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/docker-multistage-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
if: ${{ inputs.stage_prev != '' }}

- name: "[Artifact Load] Import previously built image"
uses: cytopia/shell-command-retry-action@v0.1.2
uses: cytopia/shell-command-retry-action@v0.1.3
with:
command: |
make load INFILE=${{ steps.set-artifact-name.outputs.prev }}
Expand All @@ -113,7 +113,7 @@ jobs:
# Build
# ------------------------------------------------------------
- name: Build
uses: cytopia/shell-command-retry-action@v0.1.2
uses: cytopia/shell-command-retry-action@v0.1.3
with:
command: |
make build VERSION=${{ matrix.version }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.flavour }} ARCH=${{ matrix.arch }}
Expand All @@ -123,7 +123,7 @@ jobs:
# Test
# ------------------------------------------------------------
- name: Test
uses: cytopia/shell-command-retry-action@v0.1.2
uses: cytopia/shell-command-retry-action@v0.1.3
with:
command: |
make test VERSION=${{ matrix.version }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.flavour }} ARCH=${{ matrix.arch }}
Expand All @@ -138,7 +138,7 @@ jobs:
### Export current image
###
- name: "[Artifact Save] Export currently built image"
uses: cytopia/shell-command-retry-action@v0.1.2
uses: cytopia/shell-command-retry-action@v0.1.3
with:
command: |
make save-verify VERSION=${{ matrix.version }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.flavour }} ARCH=${{ matrix.arch }} OUTFILE=${{ steps.set-artifact-name.outputs.curr }} INFILE=${{ steps.set-artifact-name.outputs.curr }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-multistage-push-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
attempt_delay: 10000

- name: "[Artifact Load] Import previously built image"
uses: cytopia/shell-command-retry-action@v0.1.2
uses: cytopia/shell-command-retry-action@v0.1.3
with:
command: |
make load INFILE=${{ steps.set-artifact-name.outputs.curr }}
Expand All @@ -115,7 +115,7 @@ jobs:
# Re-tag images
# ------------------------------------------------------------
- name: "[Docker Tag] Retag"
uses: cytopia/shell-command-retry-action@v0.1.2
uses: cytopia/shell-command-retry-action@v0.1.3
with:
command: |
make tag VERSION=${{ matrix.version }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.flavour }} TAG=${{ steps.tag.outputs.docker-tag }}
Expand All @@ -140,7 +140,7 @@ jobs:
# Push images
# ------------------------------------------------------------
- name: Push Image
uses: cytopia/shell-command-retry-action@v0.1.2
uses: cytopia/shell-command-retry-action@v0.1.3
with:
command: |
make push VERSION=${{ matrix.version }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.flavour }} TAG=${{ steps.tag.outputs.docker-tag }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-multistage-push-manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
# Create Manifest
# ------------------------------------------------------------
- name: "[Create Manifest] (${{ steps.manifest.outputs.arches }})"
uses: cytopia/shell-command-retry-action@v0.1.2
uses: cytopia/shell-command-retry-action@v0.1.3
with:
command: |
make manifest-create VERSION=${{ matrix.version }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.flavour }} ARCHES=${{ steps.manifest.outputs.arches }} TAG=${{ steps.tag.outputs.docker-tag }}
Expand All @@ -114,7 +114,7 @@ jobs:
# Deploy Manifest
# ------------------------------------------------------------
- name: "[Push Manifest] ${{ steps.tag.outputs.docker-tag }}"
uses: cytopia/shell-command-retry-action@v0.1.2
uses: cytopia/shell-command-retry-action@v0.1.3
with:
command: |
make manifest-push VERSION=${{ matrix.version }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.flavour }} TAG=${{ steps.tag.outputs.docker-tag }}
4 changes: 2 additions & 2 deletions .github/workflows/docker-multistage-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
attempt_delay: 10000

- name: "[Artifact Load] Import previously built image"
uses: cytopia/shell-command-retry-action@v0.1.2
uses: cytopia/shell-command-retry-action@v0.1.3
with:
command: |
make load INFILE=${{ steps.set-artifact-name.outputs.curr }}
Expand All @@ -97,7 +97,7 @@ jobs:
# Test
# ------------------------------------------------------------
- name: Test
uses: cytopia/shell-command-retry-action@v0.1.2
uses: cytopia/shell-command-retry-action@v0.1.3
with:
command: |
make test VERSION=${{ matrix.version }} STAGE=${{ inputs.stage }} FLAVOUR=${{ matrix.flavour }} ARCH=${{ matrix.arch }}