Skip to content

Commit

Permalink
Update release action to include the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
julianschuler committed Oct 17, 2024
1 parent 9f4a47e commit 99f1143
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,21 @@ jobs:
packages: write
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Download artifacts
uses: actions/download-artifact@v4
with:
pattern: "binary-*"
pattern: binary-*
merge-multiple: true
- name: Release executables
uses: softprops/action-gh-release@v2
- name: Create release
uses: docker://antonyurchenko/git-release:v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: Concavum customizer ${{ github.ref_name }}
body: The executables for the concavum customizer ${{ github.ref_name }}.
files: '*'
fail_on_unmatched_files: true
args: concavum-customizer-v*
deploy-to-pages:
name: Deploy to GitHub pages
environment:
Expand All @@ -70,6 +73,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Install wasm-pack
Expand All @@ -79,7 +84,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "web"
path: web
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 99f1143

Please sign in to comment.