Skip to content

Commit

Permalink
Update pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisSimon committed Mar 8, 2024
1 parent ee673e9 commit b09e468
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,5 @@ jobs:
platforms: linux/amd64,linux/arm64
tags: |
ghcr.io/${{ env.lc_repository }}:latest
ghcr.io/${{ env.lc_repository }}:nightly
7 changes: 6 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ jobs:
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: ghcr.io/${{ github.repository }}

- name: lowercase github.repository
run: |
echo "lc_repository=`echo ${{github.repository}} | tr '[:upper:]' '[:lower:]'`" >>${GITHUB_ENV}
- name: Build and Push Docker Image
uses: docker/build-push-action@v5
with:
Expand All @@ -38,7 +43,7 @@ jobs:
SWIFT_VERSION=${{ env.SWIFT_VERSION }}
platforms: linux/amd64,linux/arm64
tags: |
ghcr.io/${{ github.repository }}:latest
ghcr.io/${{ env.lc_repository }}:latest
${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit b09e468

Please sign in to comment.