Fix the issue #124 (#290) #136
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2023 Google LLC | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: Publish Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
name: Publish Release | |
runs-on: ubuntu-latest | |
if: ${{ startsWith(github.event.head_commit.message, 'Version Packages') }} | |
permissions: write-all | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@master | |
with: | |
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits | |
fetch-depth: 0 | |
- name: Setup Node.js 18 | |
uses: actions/setup-node@master | |
with: | |
node-version: 18 | |
- name: Install Dependencies & build | |
run: yarn && yarn build | |
- name: Create .npmrc | |
run: | | |
cat << EOF > "$HOME/.npmrc" | |
@google:registry=https://wombat-dressing-room.appspot.com | |
//wombat-dressing-room.appspot.com/:_authToken=$NPM_TOKEN | |
EOF | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Set up user info for git committing | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
- name: NPM publish | |
run: yarn changeset publish | |
- name: Git tags | |
# list tags then try to push them | |
run: | | |
git for-each-ref refs/tags | |
git push --follow-tags | |
- name: Create Github release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
NEWEST_TAG=$(git describe --tags --abbrev=0) | |
gh release create "$NEWEST_TAG" \ | |
--repo="$GITHUB_REPOSITORY" \ | |
--title="$NEWEST_TAG" \ | |
--generate-notes \ | |
--verify-tag |