Skip to content
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
8 changes: 4 additions & 4 deletions .github/workflows/publish-latest.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: publish-stable
name: publish-latest

# Actions that take place on tags.
# Here we build a 'stable' image, regardless of tag value.
# Actions that take place on the 'staging' branch.
# Here we build and push a series of 'latest' images.

# -----------------
# Control variables (GitHub Secrets)
Expand All @@ -29,7 +29,7 @@ jobs:
call-test:
uses: ./.github/workflows/test.yaml

call-build-without-push:
call-build-with-push:
needs: call-test
uses: ./.github/workflows/build-all-with-push-option.yaml
secrets: inherit
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish-stable.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
name: publish-stable

# Actions that take place to create a 'stabkle' image.
# Actions that take place on the 'main' branch (and nightly).
# Here we build and push a series of 'stable' images.

# -----------------
# Control variables (GitHub Secrets)
Expand Down
Loading