diff --git a/.github/workflows/update-image.yml b/.github/workflows/update-image.yml index 3ec3da4..940dc16 100644 --- a/.github/workflows/update-image.yml +++ b/.github/workflows/update-image.yml @@ -1,4 +1,4 @@ -name: "Update Image" +name: "Update Image and Push to Github Packages and Docker Hub" on: schedule: - cron: "0 12 * * *" # Run every day at noon. @@ -12,7 +12,7 @@ jobs: uses: "actions/checkout@v2" # Get tag. - - name: "Get Tag" + - name: "Get Monero Release Tag" id: get_tag run: echo "::set-output name=tag::$(awk -F "=" '/MONERO_BRANCH=/ {print $2}' Dockerfile)" @@ -32,6 +32,6 @@ jobs: with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - repository: sethsimmons/simple-monerod + repository: ${{ github.repository }}/simple-monerod tags: latest, ${{ steps.get_tag.outputs.tag }} add_git_labels: true \ No newline at end of file