Skip to content

Commit

Permalink
use old ref format
Browse files Browse the repository at this point in the history
  • Loading branch information
WanjikuMac committed Oct 26, 2023
1 parent 3d6ff01 commit b26ffaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/alpha-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,17 @@ jobs:
- name: Build
run: |
echo '${{ secrets.RELEASES_SECRETS }}' >> config/releases.exs
docker build --tag "gcr.io/duncan-openc2-plugfest/twinklyhaha:${GITHUB_REF_NAME}" .
docker build --tag "gcr.io/duncan-openc2-plugfest/twinklyhaha:${GITHUB_REF##*/}" .
# Push the Docker image to Google Container Registry
- name: Publish
run: |-
docker push "gcr.io/duncan-openc2-plugfest/twinklyhaha:${GITHUB_REF_NAME}"
docker push "gcr.io/duncan-openc2-plugfest/twinklyhaha:${GITHUB_REF##*/}"
- name: Deploy to Cloud Run
id: deploy
uses: google-github-actions/deploy-cloudrun@v0
with:
service: twinklyhaha-alpha
region: us-east4
image: "gcr.io/duncan-openc2-plugfest/twinklyhaha:${{ github.ref_name }}"
image: "gcr.io/duncan-openc2-plugfest/twinklyhaha:${GITHUB_REF##*/}"

0 comments on commit b26ffaa

Please sign in to comment.