File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed
actions/download-delete-artifact Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 11name : Download and delete a Build Artifact'
2- description : ' Download and delete a build artifact that was previously uploaded in the workflow by the upload-artifact action'
3- inputs :
2+ description : " Download and delete a build artifact that was previously uploaded in the workflow by the upload-artifact action"
3+ inputs :
44 name :
5- description : ' Artifact name'
5+ description : " Artifact name"
66 required : true
77 path :
8- description : ' Destination path'
8+ description : " Destination path"
99 required : false
1010runs :
1111 using : " composite"
1212 steps :
1313 - name : ☁ ⤵ Download artifact
14- uses : actions/download-artifact@v3
14+ uses : actions/download-artifact@v4
1515 with :
1616 name : ${{ inputs.name }}
1717 path : ${{ inputs.path }}
1818
1919 - name : 🧹 Delete artifact
20- uses : geekyeggo/delete-artifact@v1
20+ uses : geekyeggo/delete-artifact@v5
2121 with :
2222 name : ${{ inputs.name }}
Original file line number Diff line number Diff line change 1414 working-directory : src/
1515 steps :
1616 - name : 🛒 Checkout
17- uses : actions/checkout@v3
17+ uses : actions/checkout@v4
1818
1919 - name : 1️⃣2️⃣3️⃣ Set VERSION
2020 uses : ./.github/actions/version
2323 run : cat "../release-notes/${{ env.VERSION }}.md"
2424
2525 - name : 🟣 Setup .NET
26- uses : actions/setup-dotnet@v3
26+ uses : actions/setup-dotnet@v4
2727 with :
2828 dotnet-version : 7.0.x
2929
3434 run : dotnet publish KiCadDbLib/KiCadDbLib.csproj -c Release --sc -r win-x64 -p:Version=${{ env.VERSION }} -o ../publish/win-x64
3535
3636 - name : 📤 Upload
37- uses : actions/upload-artifact@v3
37+ uses : actions/upload-artifact@v4
3838 with :
3939 name : win-x64
4040 path : publish/win-x64
4848 working-directory : src/
4949 steps :
5050 - name : 🛒 Checkout
51- uses : actions/checkout@v3
51+ uses : actions/checkout@v4
5252
5353 - name : 1️⃣2️⃣3️⃣ Set VERSION
5454 uses : ./.github/actions/version
5757 run : cat "../release-notes/${{ env.VERSION }}.md"
5858
5959 - name : 🟣 Setup .NET
60- uses : actions/setup-dotnet@v3
60+ uses : actions/setup-dotnet@v4
6161 with :
6262 dotnet-version : 7.0.x
6363
8888 tar -cvzf ../KiCad-Db-Lib-macOS.tar.gz *
8989
9090 - name : 🚀 Release
91- uses : softprops/action-gh-release@v1
91+ uses : softprops/action-gh-release@v2
9292 with :
9393 body_path : release-notes/${{ env.VERSION }}.md
9494 files : |
You can’t perform that action at this time.
0 commit comments