Added Github Actions

This commit is contained in:
Annika Merris 2024-10-09 16:09:46 -04:00
parent 94a5a6d3db
commit f756ad9a1e
3 changed files with 21 additions and 1 deletions

19
.github/workflows/create-release.yaml vendored Normal file
View file

@ -0,0 +1,19 @@
---
name: Create a release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
env:
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }}
steps:
- name: Clone project
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Package and release
uses: BigWigsMods/packager@v2