Skip to content

Commit

Permalink
add version to step names
Browse files Browse the repository at this point in the history
  • Loading branch information
notifiarr-auto-releaser committed Jul 26, 2024
1 parent 0117278 commit 8467b1a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
# Build and push Docker image with Buildx
# https://github.com/docker/build-push-action
- name: Build and push ${{ matrix.docker.name }} Docker image
- name: Build v${{ env.VERSION }}-${{ env.ITERATION }} and push ${{ matrix.docker.name }} Docker image
uses: docker/build-push-action@v6
with:
platforms: |-
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: make-release
id: release
run: |
sudo apt install -y rpm fakeroot zip debsigs gnupg jq
sudo apt install -y rpm fakeroot zip debsigs gnupg jq
sudo gem install --no-document fpm
echo "${GPG_SIGNING_KEY}" | gpg --import -
[ -z SLIPPERS ] || eval "${SLIPPERS}"
Expand All @@ -92,7 +92,7 @@ jobs:
needs:
- release-test
- macapp-test
name: Deploy Unstable.app
name: Deploy v${{needs.release-test.outputs.version}}-${{needs.release-test.outputs.revision}} Unstable.app
runs-on: ubuntu-latest
steps:
- name: "Download files: ${{ matrix.files }}"
Expand All @@ -113,7 +113,7 @@ jobs:
# description: "Uploads pre-built RPM and DEB packages to packagecloud.io/golift"
if: github.ref == 'refs/heads/unstable'
needs: release-test
name: Deploy Unstable PackageCloud
name: Deploy v${{needs.release-test.outputs.version}}-${{needs.release-test.outputs.revision}} Unstable PackageCloud
runs-on: ubuntu-latest
steps:
- name: Download release files
Expand All @@ -132,7 +132,7 @@ jobs:
# description: "Uploads pre-built RPM and DEB packages to packagecloud.io/golift"
if: startsWith(github.ref, 'refs/tags/v')
needs: release-test
name: Deploy Release PackageCloud
name: Deploy v${{needs.release-test.outputs.version}}-${{needs.release-test.outputs.revision}} Release PackageCloud
runs-on: ubuntu-latest
steps:
- name: Download release files
Expand Down Expand Up @@ -177,8 +177,8 @@ jobs:
archlinux-aur:
# description: creates and uploads and aur file to the golift/aur repo for arch linux.
needs: deploy-github-release
name: Deploy ArchLinux AUR
needs: [release-test, deploy-github-release]
name: Deploy v${{needs.release-test.outputs.version}}-${{needs.release-test.outputs.revision}} ArchLinux AUR
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 8467b1a

Please sign in to comment.