fix: release.yml #17
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
name: release | ||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: {} | ||
jobs: | ||
build: | ||
uses: ./.github/workflows/build.yml | ||
secrets: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
Check failure on line 11 in .github/workflows/release.yml GitHub Actions / releaseInvalid workflow file
|
||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
release: | ||
needs: [build] | ||
concurrency: release | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
id-token: write | ||
env: | ||
CI: "true" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: ./.github/actions/build | ||
- name: Set git identity | ||
run: |- | ||
git config --global user.name "github-actions" | ||
git config --global user.email "[email protected]" | ||
- run: echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > ~/.npmrc | ||
env: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
- name: bump versions | ||
run: |- | ||
pnpm standard-version | ||
git push | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Publish packages | ||
run: pnpm -r publish | ||
env: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |