Skip to content

Commit

Permalink
Add main script and Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Rafael Sene <[email protected]>
  • Loading branch information
rpsene committed Jun 2, 2023
1 parent ffc8eaa commit f57fe02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/weekly-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Get the current date
id: current_date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
run: echo "CURRENT_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV

- name: Build image and push to Docker Hub
uses: docker/build-push-action@v3
Expand All @@ -49,7 +49,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GHTOKEN }}
with:
tag_name: release-${{ steps.current_date.outputs.date }}-${{ github.sha }}
release_name: Release ${{ steps.current_date.outputs.date }}-${{ github.sha }}
tag_name: release-${{ env.CURRENT_DATE }}-${{ github.sha }}
release_name: Release ${{ env.CURRENT_DATE }}-${{ github.sha }}
body: |
This release contains the latest container image built by this repository and hosted at [riscvintl/jira-to-google::latest](https://hub.docker.com/repository/docker/riscvintl/jira-to-google/general).

0 comments on commit f57fe02

Please sign in to comment.