Skip to content

Commit

Permalink
feat(action): 👷 Add package build action
Browse files Browse the repository at this point in the history
  • Loading branch information
tomgrv committed Apr 17, 2024
1 parent dafd255 commit 17c19ac
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build-spk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
push:
branches:
- main
- develop
- 'release/**'
- 'feature/**'

jobs:
Package:
name: Create SPK
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build Package
uses: tomgrv/synology-package-builder@v1
- name: Upload Package
uses: actions/upload-artifact@v3
with:
name: packages
path: ./toolkit/result_spk/**/*.spk

0 comments on commit 17c19ac

Please sign in to comment.