From 6d870c81133cac4b011a71d82e04090ba7d7ebef Mon Sep 17 00:00:00 2001 From: Matthew Waltz Date: Mon, 7 Oct 2024 22:37:50 -0600 Subject: [PATCH] don't export source zip --- .gitattributes | 1 + .github/workflows/make.yml | 9 ++++++++- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dc1805c --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* export-ignore diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index c7680e2..ee13700 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -32,8 +32,15 @@ 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: | + git checkout master + 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