Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

workflow: Change action and jobs names #144

Merged
merged 1 commit into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: CI on push tag
name: CI on push release tag
on:
push:
tags:
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
echo "At least one build attempt succeeded."
fi
deploy-images:
name: Deploy DTS artifacts on boot.dasharo.com
name: Deploy DTS artifacts on boot.dasharo.com and GitHub Release
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }}
needs: build
runs-on:
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
run: |
./meta-dts/scripts/generate-ipxe-menu.sh ${{steps.dts-ver.outputs.DTS_VER}}
scp -i ~/.ssh/dts-ci-key dts.ipxe builder@10.1.40.2:boot/dts/
- name: Trigger signing
- name: Trigger signing and deploy to GitHub Release tab
shell: bash
run: |
DTS_VER="${{steps.dts-ver.outputs.DTS_VER}}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: CI on push to develop
name: CI on push develop tag
on:
push:
tags:
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
echo "At least one build attempt succeeded."
fi
deploy-images:
name: Deploy DTS artifacts on GitHub Releases tab
name: Deploy DTS artifacts on boot.dasharo.com
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }}
needs: build
runs-on:
Expand Down