Created
October 30, 2021 05:59
-
-
Save Ran-Xing/f95c5ac3bf8d6ae9a5529ba043bf1035 to your computer and use it in GitHub Desktop.
Timestamp Releases Action
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - name: Get version | |
| id: time_now | |
| run: echo "::set-output name=dir::$(date +%Y_%m_%d)" | |
| - | |
| name: release | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| files: "App/**" | |
| body: "README" | |
| tag_name: ${{ steps.time_now.outputs.dir }} | |
| release_name: "Mac Download" | |
| draft: false | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment