Skip to content

Commit

Permalink
Add new release script
Browse files Browse the repository at this point in the history
  • Loading branch information
Madman10K committed Jul 9, 2023
1 parent 9b05171 commit eebcb41
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,18 @@ jobs:
run: |
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Create archive
shell: bash
run: |
rm -rf .git/
tar cfJ untitled-exec.tar.xz . || echo "Might have failed"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: softprops/action-gh-release@master
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Check our discord for patch notes: https://discord.gg/4kyWu2Vu
More on what is done this month can be found on the latest newsletter entry: https://madladsquad.com/#monthly-newsletter
draft: false
prerelease: false
files: untitled-exec.tar.xz
generate_release_notes: false

0 comments on commit eebcb41

Please sign in to comment.