feat: add SQS support (#34) #13
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 | ||
Check failure on line 9 in .github/workflows/release.yml GitHub Actions / .github/workflows/release.ymlInvalid workflow file
|
||
secrets: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
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 "github-actions@github.com" | ||
- 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 }} |