Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
fix: set correct case (lowercase) for docker repository value
Browse files Browse the repository at this point in the history
  • Loading branch information
PepeCortisona committed May 3, 2021
1 parent 140d507 commit 5579fd0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/dockerImage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,15 @@ jobs:
uses: actions/download-artifact@v2
with:
name: targetfiles
- name: Prepare Docker variables
run: |
echo "DOCKER_REPOSITORY=$(echo "${{ github.repository }}/agencyservice-image" | awk '{print tolower($0)}')" >> $GITHUB_ENV
shell: bash
- name: Push to GitHub Packages
uses: docker/[email protected]
with:
username: ${{ secrets.GH_PACKAGE_RELEASE_USER }}
password: ${{ secrets.GH_PACKAGE_RELEASE_TOKEN }}
registry: docker.pkg.github.com
repository: ${{ github.repository }}/agencyservice-image
repository: ${{ env.DOCKER_REPOSITORY }}
tag_with_ref: true

0 comments on commit 5579fd0

Please sign in to comment.