Skip to content

Commit

Permalink
build: Add publish workflow to .github
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkrauz committed Sep 16, 2022
1 parent 591db92 commit 4c12237
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish

on:
push:
branches:
- master

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.event.release.tag_name }}

- name: Setup Node
uses: actions/setup-node@v2

- uses: JasonEtco/build-and-tag-action@v2
env:
GITHUB_TOKEN: ${{ github.token }}

0 comments on commit 4c12237

Please sign in to comment.