We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 809b6aa commit 5a088e8Copy full SHA for 5a088e8
1 file changed
.github/workflows/release.yml
@@ -47,6 +47,8 @@ jobs:
47
with:
48
name: build-ubuntu-latest
49
path: .pkg/usr/bin
50
+ - name: Chmod
51
+ run: chmod +x .pkg/usr/bin/mcping
52
- name: Get tag name
53
id: process-name
54
env:
@@ -74,12 +76,13 @@ jobs:
74
76
permissions:
75
77
contents: write
78
steps:
79
+ - name: Checkout
80
+ uses: actions/checkout@v5
81
- name: Download Artifact
82
uses: actions/download-artifact@v5
83
84
+ path: ./artifacts
85
merge-multiple: true
- - name: Checkout
- uses: actions/checkout@v5
86
87
88
@@ -97,4 +100,4 @@ jobs:
97
100
name: Release ${{ steps.process-name.outputs.NAME }}
98
101
prerelease: ${{ contains(github.ref, 'beta') }}
99
102
body: ${{ steps.tag.outputs.TAG_MESSAGE }}
- files: ./*
103
+ files: ./artifacts/*
0 commit comments