Skip to content
This repository has been archived by the owner on Aug 9, 2023. It is now read-only.

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
gprossliner committed Apr 14, 2021
1 parent b8f3702 commit e4deec0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/docker-image-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,5 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set Envrionment
run: echo "IMAGE_TAG=${GITHUB_SHA}" >> $GITHUB_ENV
- name: Build the Docker image
run: docker build . --file Dockerfile --tag world-direct/lnx-adsagent:$IMAGE_TAG
run: docker build .
8 changes: 4 additions & 4 deletions .github/workflows/docker-image-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
- name: Set Envrionment
run: echo "IMAGE_TAG=${GITHUB_REF:10}" >> $GITHUB_ENV
- name: docker build
run: docker build -t world-direct/lnx-adsagent:$IMAGE_TAG .
- name: docker login docker.io
run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login docker.io -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
run: docker build -t worlddirect/lnx-adsagent:$IMAGE_TAG .
- name: docker login
run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
- name: docker push
run: docker push world-direct/lnx-adsagent:$IMAGE_TAG
run: docker push worlddirect/lnx-adsagent:$IMAGE_TAG

0 comments on commit e4deec0

Please sign in to comment.