Skip to content

Commit

Permalink
ci: WIP: release
Browse files Browse the repository at this point in the history
  • Loading branch information
hraban committed Jul 15, 2024
1 parent 34e8251 commit 3f6807b
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ on:
push:
pull_request:

permissions:
# To create a new release
contents: write

jobs:
nix:
build:
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -36,6 +40,28 @@ jobs:
name: git-hly-${{ matrix.os.name }}-${{ github.sha }}
path: result/bin/git-hly

release:
if: "github.ref == 'refs/heads/master'"
needs:
- build
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
- run: |
for os in linux macos ; do
(
cd *"$os"*
zip git-hly-$os.zip *
mv *.zip ../
)
done
- uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: latest
prerelease: true
files: "git-hly*.zip"

nocommit:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 3f6807b

Please sign in to comment.