Skip to content

Commit

Permalink
Add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Saltssaumure committed Jul 2, 2023
1 parent 8c1249c commit 76f845b
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Release .osk

on:
push:
tags:
- 'v*'

jobs:
release-osk:
name: Release .osk
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Create .osk
run: git archive --output='./xd.osk' --format=zip HEAD

- name: Release
uses: ncipollo/release-action@v1
with:
artifacts: 'xd.osk'
makeLatest: true
generateReleaseNotes: true

0 comments on commit 76f845b

Please sign in to comment.