F95API/.github/workflows/publish.yml

36 lines
900 B
YAML
Raw Normal View History

2020-11-22 09:51:20 +00:00
name: publish
2020-11-22 09:24:53 +00:00
on:
push:
branches:
- prod
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
2020-11-22 10:01:55 +00:00
node-version: 12.x
always-auth: true
2020-11-22 09:24:53 +00:00
- run: yarn install
publish-gpr:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
2020-11-22 10:01:55 +00:00
node-version: 12.x
2020-11-22 09:24:53 +00:00
registry-url: https://npm.pkg.github.com/
scope: '@MillenniumEarl'
2020-11-22 10:01:55 +00:00
always-auth: true
2020-11-22 09:24:53 +00:00
- run: yarn install
- run: git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com" && git config --global user.name "$GITHUB_ACTOR"
2020-11-22 09:53:32 +00:00
- run: yarn version --patch
2020-11-22 09:24:53 +00:00
- run: git push --tags && git push
- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}