diff --git a/.github/workflows/publish-latest.yaml b/.github/workflows/publish-latest.yaml index ecf4660..8c0ee48 100644 --- a/.github/workflows/publish-latest.yaml +++ b/.github/workflows/publish-latest.yaml @@ -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) @@ -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 diff --git a/.github/workflows/publish-stable.yaml b/.github/workflows/publish-stable.yaml index 59db7f6..f478d9b 100644 --- a/.github/workflows/publish-stable.yaml +++ b/.github/workflows/publish-stable.yaml @@ -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)