Skip to content

Commit

Permalink
Added github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hnaderi committed Jan 5, 2023
1 parent 17a41ce commit 34fddcc
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release

on: push

jobs:
build:
runs-on: ubuntu-latest
container:
image: qmkfm/qmk_firmware
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: |
qmk compile qmk-config.json
cp /qmk_firmware/*.hex .
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: "*.hex"

0 comments on commit 34fddcc

Please sign in to comment.