We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63cf91b commit a3e0165Copy full SHA for a3e0165
.github/workflows/android.yml
@@ -30,13 +30,12 @@ jobs:
30
with:
31
name: launcher-debug-${{ github.sha }}.apk
32
path: app/build/outputs/apk/default/debug/app-default-debug.apk
33
- - name: "move pre-release tag"
+
34
+ - name: delete old pre-release
35
if: github.ref == 'refs/heads/master'
- run: |
36
- git config user.name "github-actions[bot]"
37
- git config user.email "github-actions[bot]@users.noreply.github.com"
38
- git tag -f pre-release ${{ github.sha }}
39
- git push -f origin pre-release
+ run: gh release delete pre-release --cleanup-tag
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40
- name: create pre-release
41
42
uses: ncipollo/release-action@v1
0 commit comments