We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee5f2d5 commit 3ebcaf7Copy full SHA for 3ebcaf7
.github/workflows/build-and-release.yml
@@ -31,6 +31,13 @@ jobs:
31
- name: Build the ISO
32
run: make iso
33
34
+ - name: Create Tag
35
+ run: |
36
+ git config user.name "github-actions"
37
+ git config user.email "github-actions@github.com"
38
+ git tag -a "v0.0.${{ github.run_number }}" -m "Auto tag for run ${{ github.run_number }}"
39
+ git push origin "v0.0.${{ github.run_number }}"
40
+
41
- name: Create Release
42
id: create_release
43
uses: softprops/action-gh-release@v2
0 commit comments