Skip to content

Commit 5fece24

Browse files
committed
more ci fixes
1 parent 6f4debc commit 5fece24

File tree

3 files changed

+3
-15
lines changed

3 files changed

+3
-15
lines changed

.github/actions/7-package/action.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -110,20 +110,6 @@ runs:
110110
echo "ARTIFACT_ID=$artifactID" >> $GITHUB_ENV
111111
echo "ARTIFACT_NAME=$os-${{ inputs.arch }}" >> $GITHUB_ENV
112112
113-
- name: 'Linux: Pack source dir'
114-
if: runner.os == 'Linux' && inputs.os == ''
115-
shell: bash
116-
run: |
117-
set -eux
118-
git clean -dffx
119-
cd ..
120-
artifactName="opend-$ARTIFACT_ID-src"
121-
chmod -R go=rX opend/ldc
122-
GZIP=-9 tar -czf artifacts/$artifactName.tar.gz --exclude-vcs --owner=0 --group=0 --transform="s,^opend/ldc,$artifactName," opend/ldc
123-
# unpack & create zip
124-
tar -xf artifacts/$artifactName.tar.gz
125-
zip -r -9 artifacts/$artifactName.zip $artifactName >/dev/null
126-
127113
- name: 'Move artifacts dir for uploading'
128114
shell: bash
129115
run: mv ../artifacts ./

.github/actions/upload-to-github/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ runs:
5252
fi
5353
5454
ls -lh
55-
sha256sum * > "opend-$ARTIFACT_ID.sha256sums.txt"
55+
# $ARTIFACT_ID
56+
sha256sum * > "opend-latest.sha256sums.txt"
5657
5758
- name: Upload to GitHub release
5859
uses: ncipollo/release-action@v1

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ jobs:
229229
needs:
230230
- build-native
231231
- build-cross
232+
- merge-macos
232233
permissions:
233234
contents: write
234235
steps:

0 commit comments

Comments
 (0)