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.
This commit is contained in:
Ian Wijma 2023-11-21 01:13:08 +11:00
parent ffa6d18e5e
commit aad5010257
1 changed files with 2 additions and 2 deletions

View File

@ -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 }}