Skip to content

Commit

Permalink
testing release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
crazyscot committed Oct 28, 2024
1 parent 406296d commit 45fc8da
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: release
on:
release:
types: [published]
workflow_dispatch: # temp
push:
branches:
- misc/ci-auto-release # temp

permissions:
contents: write
Expand All @@ -23,6 +27,9 @@ jobs:
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- uses: Swatinem/rust-cache@v2 # TEST
with:
key: "${{matrix.build}}"
- name: install packages (ubuntu)
if: startsWith(matrix.host, 'ubuntu')
run: scripts/install-ubuntu-packages
Expand All @@ -34,3 +41,9 @@ jobs:
include: README.md, LICENSE, CHANGELOG.md
tar: unix
zip: windows
dry_run: true # TEMP, for testing
- run: ls -l *.tar.gz # TEST
- uses: actions/upload-artifact@v4
with:
name: binary-${{ matrix.target }}
path: qcp-${{ github.ref_name }}-${{ matrix.target }}.tar.gz

0 comments on commit 45fc8da

Please sign in to comment.