Skip to content

Commit

Permalink
Merge branch 'master' of github.com:jhaakma/bardicInspiration
Browse files Browse the repository at this point in the history
  • Loading branch information
jhaakma committed Aug 10, 2021
2 parents 3407ae0 + a53edd9 commit 84c5d98
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Package Bardic Inspiration
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:

- name: Checkout Code
uses: actions/checkout@v2
with:
fetch-depth: 50

- name: Build Project
run: |
zip -r BardicInspiration.zip "Data Files"
- name: Create Release
uses: notlmn/release-with-changelog@v2
with:
header: '### Changelog'
include-hash: true
include-range: true
token: ${{ secrets.GITHUB_TOKEN }}

- name: Upload to Github
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: BardicInspiration.zip

0 comments on commit 84c5d98

Please sign in to comment.