1 parent 478b4ac commit 4860034Copy full SHA for 4860034
1 file changed
.github/workflows/buildwithdocker.yaml
@@ -1,4 +1,8 @@
1
name: buildwithdocker-on-push
2
+# !!!! IMPORTANT
3
+# for this to function properly there should be NO latest tag on any commit
4
+# delete latest on remote: git push origin :latest
5
+# delete locally: git tag --delete latest
6
7
on:
8
push:
@@ -84,7 +88,7 @@ jobs:
84
88
if: ${{startsWith(github.ref, 'refs/heads/master')}}
85
89
uses: "softprops/action-gh-release@v1"
86
90
with:
87
- tag_name: "latest"
91
+ tag_name: "latest" # we are tagging the github repo (origin)
92
prerelease: true
93
generate_release_notes: true
94
name: "Development Build"
0 commit comments