21.1.1-fixes #3
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
on: | |
push: | |
branches: | |
- main | |
name: release-please | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: google-github-actions/release-please-action@v3 | |
id: release | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
command: manifest | |
default-branch: main | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 14 | |
- run: npm install | |
env: | |
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true | |
- run: npm run compile | |
- name: push Deno release | |
run: | | |
git config user.name github-actions[bot] | |
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
git remote add gh-token "https://${{ secrets.GITHUB_TOKEN}}@github.com/yargs/yargs-parser.git" | |
git checkout -b deno | |
git add -f build | |
git commit -a -m 'chore: ${{ steps.release.outputs.tag_name }} release' | |
git push origin +deno | |
git tag -a ${{ steps.release.outputs.tag_name }}-deno -m 'chore: ${{ steps.release.outputs.tag_name }} release' | |
git push origin ${{ steps.release.outputs.tag_name }}-deno | |
if: ${{ steps.release.outputs.releases_created }} | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 14 | |
registry-url: 'https://external-dot-oss-automation.appspot.com/' | |
if: ${{ steps.release.outputs.releases_created }} | |
- run: npm install | |
if: ${{ steps.release.outputs.releases_created }} | |
- run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_MONOREPO_TOKEN}} | |
if: ${{ steps.release.outputs.releases_created }} |