Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
MJRichardson committed Nov 12, 2023
1 parent 154ec77 commit c0d6bc9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-push-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
id: image-tag
run: |
tag="${{ steps.branch-name.outputs.current_branch }}.${{ github.run_id }}"
echo "image=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:$tag" >> $GITHUB_ENV
echo "tag=$tag" >> $GITHUB_ENV
echo "image=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:$tag" >> $GITHUB_OUTPUT
echo "tag=$tag" >> $GITHUB_OUTPUT
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
Expand All @@ -77,7 +77,7 @@ jobs:
with:
context: .
push: true
tags: ${{ env.image }}
tags: ${{ steps.image-tag.outputs.image }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
3 changes: 3 additions & 0 deletions .github/workflows/release-pull-request.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Release - Pull Request

permissions:
id-token: 'write'

on:
pull_request:
branches: [ "main" ]
Expand Down

0 comments on commit c0d6bc9

Please sign in to comment.