-
Notifications
You must be signed in to change notification settings - Fork 107
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
Feature/ghcr integration #217
base: master
Are you sure you want to change the base?
Changes from all commits
86ee873
7d1d1cc
a741b24
f41cbbf
2c39f14
ec1c0fe
a8a70d6
8a09049
7930352
fbce213
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ on: | |
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
push_to_registry: | ||
push_to_dockerhub: | ||
name: Push Docker image to Docker Hub | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
@@ -22,6 +22,22 @@ jobs: | |
with: | ||
username: ${{ secrets.CADENCE_WEB_DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.CADENCE_WEB_DOCKERHUB_TOKEN }} | ||
repository: ubercadence/web | ||
repository: justatuber/web | ||
tag_with_ref: true | ||
tags: latest | ||
push_to_ghcr: | ||
name: Push Docker image to GitHub Container Registry | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v2 | ||
- name: Push to GitHub Container Registry | ||
if: "!github.event.release.prerelease" | ||
uses: docker/build-push-action@v1 | ||
with: | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.CADENCE_WEB_GHCR_PAT }} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Need to change back to |
||
registry: ghcr.io | ||
repository: just-at-uber/cadence-web/web | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Need to update repository to |
||
tag_with_ref: true | ||
tags: latest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to swap back to
ubercadence/web