Skip to content

Commit

Permalink
ci: use zstd branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinfall committed Apr 18, 2024
1 parent e066c56 commit 307c375
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "DevuanWSL Build"

on:
push:
branches: [ daedalus ]
branches: [ test-zstd ]
# Trigger only when Makefile is changed
paths: ['Makefile']
workflow_dispatch:
Expand All @@ -19,12 +19,12 @@ jobs:
- name: checkout repo
uses: actions/checkout@v4
with:
ref: 'daedalus'
ref: 'test-zstd'
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal access token.
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
- run: mkdir -p release
- name: install dependencies
run: sudo apt install -y curl libarchive-tools jq tar unzip xz-utils
run: sudo apt install -y curl libarchive-tools jq tar unzip xz-utils zstd
- name: build package & make hash
run: |
sudo make
Expand All @@ -35,8 +35,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
retention-days: 10
name: Devuan-packed.zip
path: release
path: "release/*"
- name: upload artifact to release
uses: ncipollo/release-action@v1
with:
Expand Down

0 comments on commit 307c375

Please sign in to comment.