Skip to content
This repository has been archived by the owner on Aug 6, 2023. It is now read-only.

Make fater with prebuilt binaries in CI #6

Merged
merged 1 commit into from
Jun 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions .github/workflows/ci-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,11 @@ jobs:
current: ${{ steps.current.outputs.current }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
cache-dependency-path: 'go.sum'
- run: go install .
- name: Install nix parser
run: curl -L https://github.com/kachick/nix-headbump/releases/latest/download/nix-headbump_Linux_x86_64.tar.gz | tar xvz -C ./ nix-headbump
- id: current
run: |
current="$(nix-headbump -current)"
current="$(./nix-headbump -current)"
echo "current=${current}" | tee -a "$GITHUB_OUTPUT"
tasks:
runs-on: ubuntu-latest
Expand Down
Loading