Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reset image name, gha package access updated #67

Merged
merged 1 commit into from
Jan 14, 2025
Merged
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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
- name: 'Build Image'
id: build
run: |
docker build -t ghcr.io/cfpb/regtech/sbl/regtech-mail-api-latest:latest -f Dockerfile .
docker tag ghcr.io/cfpb/regtech/sbl/regtech-mail-api-latest:latest ghcr.io/cfpb/regtech/sbl/regtech-mail-api:${{env.TAG_VERSION}}
docker tag ghcr.io/cfpb/regtech/sbl/regtech-mail-api-latest:latest ghcr.io/cfpb/regtech/sbl/regtech-mail-api:${{env.TAG_VERSION}}_${{github.run_number}}.${{github.run_attempt}}
docker build -t ghcr.io/cfpb/regtech/sbl/regtech-mail-api:latest -f Dockerfile .
docker tag ghcr.io/cfpb/regtech/sbl/regtech-mail-api:latest ghcr.io/cfpb/regtech/sbl/regtech-mail-api:${{env.TAG_VERSION}}
docker tag ghcr.io/cfpb/regtech/sbl/regtech-mail-api:latest ghcr.io/cfpb/regtech/sbl/regtech-mail-api:${{env.TAG_VERSION}}_${{github.run_number}}.${{github.run_attempt}}

- name: 'Login to GitHub Container Registry'
id: login
Expand All @@ -39,5 +39,5 @@ jobs:
id: publish
if: github.ref == 'refs/heads/main' && steps.login.conclusion == 'success'
run: |
docker push ghcr.io/cfpb/regtech/sbl/regtech-mail-api-latest --all-tags
docker push ghcr.io/cfpb/regtech/sbl/regtech-mail-api --all-tags

Loading