We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef5718f commit ae590a4Copy full SHA for ae590a4
.github/workflows/daily-build.yml
@@ -30,6 +30,15 @@ jobs:
30
name: pixels-package
31
path: ./downloaded_package
32
33
+ - name: Update daily-latest tag to latest commit
34
+ run: |
35
+ git tag -d daily-latest || true
36
+ git push origin --delete daily-latest || true
37
+ git tag daily-latest
38
+ git push origin daily-latest
39
+ env:
40
+ GH_TOKEN: ${{ secrets.PIXELS_DEVELOP }}
41
+
42
- name: Create or Update Daily Release
43
uses: softprops/action-gh-release@v2
44
with:
0 commit comments