@@ -96,14 +96,14 @@ jobs:
96
96
echo "::notice::building master"
97
97
./gradlew assembleRelease
98
98
mv "${{ github.workspace }}/master/app/build/outputs/apk/release/app-release-unsigned.apk" "${{ github.workspace }}/output/master.apk"
99
- cp "./github/changelog.md" "${{ github.workspace }}/output/"
99
+ cp "./. github/changelog.md" "${{ github.workspace }}/output/"
100
100
101
101
elif [[ "${{ inputs.style }}" -eq "2" ]]; then
102
102
cd "${{ github.workspace }}/extended/"
103
103
echo "::notice::building extended"
104
104
./gradlew assembleRelease
105
105
mv "${{ github.workspace }}/extended/app/build/outputs/apk/release/app-release-unsigned.apk" "${{ github.workspace }}/output/extended.apk"
106
- cp "./github/changelog.md" "${{ github.workspace }}/output/"
106
+ cp "./. github/changelog.md" "${{ github.workspace }}/output/"
107
107
108
108
elif [[ "${{ inputs.style }}" -eq "3" ]]; then
109
109
echo "::notice::both master and extended are going to build"
@@ -112,7 +112,7 @@ jobs:
112
112
echo "::notice::building master"
113
113
./gradlew assembleRelease
114
114
mv "${{ github.workspace }}/master/app/build/outputs/apk/release/app-release-unsigned.apk" "${{ github.workspace }}/output/master.apk"
115
- cp "./github/changelog.md" "${{ github.workspace }}/output/"
115
+ cp "./. github/changelog.md" "${{ github.workspace }}/output/"
116
116
117
117
cd "${{ github.workspace }}/extended"
118
118
echo "::notice::building extended"
@@ -124,7 +124,7 @@ jobs:
124
124
echo "::notice::building current"
125
125
./gradlew assembleRelease
126
126
mv "${{ github.workspace }}/current/app/build/outputs/apk/release/app-release-unsigned.apk" "${{ github.workspace }}/output/current.apk"
127
- cp "./github/changelog.md" "${{ github.workspace }}/output/"
127
+ cp "./. github/changelog.md" "${{ github.workspace }}/output/"
128
128
fi
129
129
130
130
- name : Sign APK
@@ -171,9 +171,9 @@ jobs:
171
171
- name : Create release and upload
172
172
run : |
173
173
gh auth login --with-token <<<"${{ secrets.GITHUB_TOKEN }}"
174
- gh release create "v${version}" --title "${{ inputs.title }}" --notes-file "./changelog.md" --prerelease="true" --repo MaintainTeam/PipeBenderTests
175
174
cd "${{ github.workspace }}/output/"
176
- gh release upload "v${version}" "echo $(find . -name '*.apk' -type f -exec basename \{} \;) checksums.txt" --repo MaintainTeam/PipeBenderTests
175
+ gh release create "v${version}" --title "${{ inputs.title }}" --notes-file "./changelog.md" --prerelease="true" --repo MaintainTeam/PipeBenderTests
176
+ gh release upload "v${version}" $(echo $(find . -name '*.apk' -type f -exec basename \{} \;) checksums.txt) --repo MaintainTeam/PipeBenderTests
177
177
178
178
- name : Archive reports for job
179
179
uses : actions/upload-artifact@v4
0 commit comments