Skip to content

Commit

Permalink
build soyweb for release
Browse files Browse the repository at this point in the history
  • Loading branch information
soyart committed Jan 12, 2025
1 parent c65aa16 commit a5ee5c0
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ on:
types: [created]

push:
branches:
- 'poc/cicd'

tags:
- 'v*'
- 'dev-*'
Expand All @@ -23,9 +26,18 @@ jobs:
github_access_token: ${{ secrets.GITHUB_TOKEN }}

- name: Build ssg-go from flake
run: 'nix build .#ssg-go'
run: |
nix build .#ssg-go
- name: Zip ssg-go binaries
run: |
zip -r ssg-go-x86_64_linux.zip result/bin
- name: Build soyweb from flake
run: |
nix build .#soyweb
- name: Zip built binaries
- name: Zip soyweb binaries
run: |
zip -r ssg-go-x86_64_linux.zip result/bin
Expand Down

0 comments on commit a5ee5c0

Please sign in to comment.