From 45fc8dabe87b89a2c55178a945babc73cc248b4c Mon Sep 17 00:00:00 2001 From: Ross Younger Date: Mon, 28 Oct 2024 20:09:11 +1300 Subject: [PATCH] testing release workflow --- .github/workflows/release.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1af3fa5..9ef2eaa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,6 +3,10 @@ name: release on: release: types: [published] + workflow_dispatch: # temp + push: + branches: + - misc/ci-auto-release # temp permissions: contents: write @@ -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 @@ -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