Skip to content

Commit

Permalink
Update upload_release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chenditc authored Jul 26, 2022
1 parent 3be8d30 commit f90bc67
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/upload_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,15 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2 # Required to mount the Github Workspace to a volume
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GH_TOKEN }}
file: Dockerfile
asset_name: Dockerfile
tag: ${{ github.ref }}
tag: ${{ steps.date.outputs.date }}
overwrite: true
body: "Daily update release"

0 comments on commit f90bc67

Please sign in to comment.