2 parents 344bb33 + 5bbbaa0 commit 903b4eeCopy full SHA for 903b4ee
1 file changed
.github/workflows/release.yml
@@ -38,19 +38,18 @@ jobs:
38
run: |
39
echo "RELEASE_DATE=$(date +%y.%m.%d)" >> ${GITHUB_ENV}
40
echo ${{github.env.GITHUB_ENV}}
41
- git tag $(date +%y.%m.%d)
42
- git push origin $(date +%y.%m.%d)
+
43
- name: Create GitHub release
44
uses: actions/create-release@v1
45
env:
46
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47
with:
+ tag_name: v${{ steps.timestamp.outputs.ts }}
48
release_name: Release ${{ steps.timestamp.outputs.ts }}
49
body: "Automatic release with timestamp :rocket: "
50
draft: false
51
prerelease: false
52
53
-
54
- name: Build Docker Image
55
run: docker build -t ungaratto93/api-fx:latest .
56
0 commit comments