Skip to content

Commit b174dea

Browse files
don't export source zip
1 parent 9ddb37c commit b174dea

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* export-ignore

.github/workflows/make.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ jobs:
77
release:
88
runs-on: ubuntu-latest
99
steps:
10+
- name: Checkout Repository
11+
uses: actions/checkout@v4
12+
with:
13+
path: libraries
14+
persist-credentials: false
15+
1016
- name: Download CE Libraries Zip
1117
uses: robinraju/release-downloader@v1
1218
with:
@@ -32,8 +38,11 @@ jobs:
3238
id: diff_check
3339
run: diff clibs.8xg current/clibs.8xg &> /dev/null || (echo "update=true" >> $GITHUB_OUTPUT ; echo "updating")
3440

41+
- name: Update nightly tag date
42+
run: |
43+
cd libraries && git checkout master ; git tag -d nightly ; git push origin :refs/tags/nightly ; git tag nightly ; git push --tags
44+
3545
- name: Update nightly release
36-
if: ${{ steps.diff_check.outputs.update == 'true' }}
3746
uses: pyTooling/Actions/releaser@main
3847
with:
3948
tag: nightly

0 commit comments

Comments
 (0)