Skip to content

Commit

Permalink
Add release mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
rwinch committed Oct 11, 2021
1 parent 8589450 commit bed926c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on:
push:
branches-ignore:
- '*'
tags:
- 'v*'
workflow_dispatch:
env:
GH_TOKEN_DISPATCH: ${{ secrets.GH_TOKEN_DISPATCH }}

jobs:
tagged-release:
name: "Tagged Release"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.17.0
uses: actions/setup-node@v1
- name: Build
run: ${GITHUB_WORKSPACE}/.github/actions/build.sh
- uses: "marvinpinto/[email protected]"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
build/*.zip

0 comments on commit bed926c

Please sign in to comment.