Skip to content

Commit

Permalink
Merge pull request #14 from menny/publish-with-actions
Browse files Browse the repository at this point in the history
missing login for specialized images
  • Loading branch information
menny authored Mar 31, 2023
2 parents dff485f + 240f332 commit f4b4c8a
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/post_merge_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

env:
TERM: dumb
IMAGE_VERSION: 1.16.3
IMAGE_VERSION: 1.16.4
jobs:
build_base:
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -56,6 +56,17 @@ jobs:
DOCKER_FILE_PATH: ${{ matrix.type }}/.
steps:
- uses: actions/[email protected]
- name: Log in to Docker Hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}
- name: Log in to the Container registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- run: ./.github/docker_build_image.sh
- run: ./.github/docker_push_image.sh
green:
Expand Down

0 comments on commit f4b4c8a

Please sign in to comment.