File tree Expand file tree Collapse file tree 4 files changed +15
-3
lines changed
Expand file tree Collapse file tree 4 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 5151 mv screenvivid*.deb /app/
5252 "
5353 - name : Upload Debian package as artifact
54- uses : actions/upload-artifact@v3
54+ uses : actions/upload-artifact@v4
5555 with :
5656 name : screenvivid-${{ github.ref_name }}.deb
5757 path : ./screenvivid*.deb
Original file line number Diff line number Diff line change 6565 mv ScreenVivid-${{ github.ref_name }}-apple-silicon.dmg ../..
6666
6767 - name : Upload DMG
68- uses : actions/upload-artifact@v3
68+ uses : actions/upload-artifact@v4
6969 with :
7070 name : ScreenVivid-${{ github.ref_name }}-apple-silicon.dmg
7171 path : ./ScreenVivid-${{ github.ref_name }}-apple-silicon.dmg
Original file line number Diff line number Diff line change 6363 options : /O+ /F"ScreenVivid-${{ github.ref_name }}-Setup"
6464
6565 - name : Upload artifact
66- uses : actions/upload-artifact@v3
66+ uses : actions/upload-artifact@v4
6767 with :
6868 name : ScreenVivid-${{ github.ref_name }}-Setup.exe
6969 path : D:\a\screenvivid\screenvivid\packaging\windows\Output\ScreenVivid-${{ github.ref_name }}-Setup.exe
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ REMOTE=origin
4+
5+ for i in $( seq 101 102) ; do
6+ TAG=" 1.0.$i "
7+ # Delete local tag if exists (ignore errors)
8+ git tag -d " $TAG " 2> /dev/null
9+ # Delete remote tag (ignore errors)
10+ git push " $REMOTE " --delete " $TAG " 2> /dev/null || true
11+ done
12+
You can’t perform that action at this time.
0 commit comments