From a0eefa3450d44ade080919ba84c312326e4e73d0 Mon Sep 17 00:00:00 2001 From: Brian Zinn Date: Wed, 4 Nov 2020 22:14:06 -0800 Subject: [PATCH] Create pre-release.yml --- .github/workflows/pre-release.yml | 39 +++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/pre-release.yml diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml new file mode 100644 index 00000000..8b644847 --- /dev/null +++ b/.github/workflows/pre-release.yml @@ -0,0 +1,39 @@ +name: make-pre-release + +on: + workflow_dispatch: + inputs: + preId: + description: 'Pre-release identifier (alpha | beta | rc)' + required: true + default: 'beta' +# push: +# branches: [ master ] + +jobs: + release: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v1 + with: + node-version: '12.x' + registry-url: 'https://registry.npmjs.org' + scope: brianzinn + + - name: Configure git + run: | + git config user.email "github@wakeskate.com" + git config user.name "Brian Zinn" + - name: install-build + run: | + yarn install + yarn build + - run: echo "prerelease identifier -- ${{ github.event.inputs.preId }}" + - run: npm version prerelease --preid=${{ github.event.inputs.preId }} -m "release %s :package:" + - run: git push && git push --tags + - name: publish-npm + run: npm publish --tag ${{ github.event.inputs.preId }} --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}