Skip to content

Commit

Permalink
Create manual_release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
dbuezas authored Jun 14, 2023
1 parent 271ccfa commit 91e2afb
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/manual_release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Manual Release
on:
workflow_dispatch: # can be ran manually
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Set env
run: echo "RELEASE_VERSION=$(node make.js)" >> $GITHUB_ENV
- name: Commit & Push changes
uses: stefanzweifel/git-auto-commit-action@v4
- uses: ncipollo/release-action@v1
with:
tag: "v${{env.RELEASE_VERSION}}"
artifacts: "lgt8f-${{env.RELEASE_VERSION}}.zip"

0 comments on commit 91e2afb

Please sign in to comment.