From aad50102571006b028c1f30bb61f256a5b591714 Mon Sep 17 00:00:00 2001 From: Ian Wijma Date: Tue, 21 Nov 2023 01:13:08 +1100 Subject: [PATCH] Update workflow run-name and remove id from 'Compile and release' The run-name in the Github actions workflow 'release.yaml' was updated for clarity, now indicating that the files are being built for release. An unnecessary id tag was removed from the 'Compile and release' step, simplifying the workflow. This makes the functioning of the workflow easier to understand and manage. --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5ca8597..d5697d4 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,11 +1,12 @@ name: Releasing -run-name: ${{ github.actor }} is building a release releasing 🚀 +run-name: ${{ github.actor }} is building the files for a release 🚀 on: release: types: [created] jobs: release: + name: release ${{ matrix.target }} runs-on: ubuntu-latest strategy: fail-fast: false @@ -20,7 +21,6 @@ jobs: steps: - uses: actions/checkout@master - name: Compile and release - id: compile uses: rust-build/rust-build.action@v1.4.4 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}