Skip to content

Commit

Permalink
don't export source zip
Browse files Browse the repository at this point in the history
  • Loading branch information
mateoconlechuga committed Oct 8, 2024
1 parent 9ddb37c commit 9cbbb59
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* export-ignore
11 changes: 10 additions & 1 deletion .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
path: libraries
persist-credentials: false

- name: Download CE Libraries Zip
uses: robinraju/release-downloader@v1
with:
Expand All @@ -32,8 +38,11 @@ jobs:
id: diff_check
run: diff clibs.8xg current/clibs.8xg &> /dev/null || (echo "update=true" >> $GITHUB_OUTPUT ; echo "updating")

- name: Update nightly tag date
run: |
cd libraries && git checkout master ; git fetch --all --tags ; git tag -d nightly ; git push origin :refs/tags/nightly ; git tag nightly ; git push --tags
- name: Update nightly release
if: ${{ steps.diff_check.outputs.update == 'true' }}
uses: pyTooling/Actions/releaser@main
with:
tag: nightly
Expand Down

0 comments on commit 9cbbb59

Please sign in to comment.