From d0ff436c93a3893849a68c9286ef35163f57e684 Mon Sep 17 00:00:00 2001 From: Andy Maloney Date: Thu, 23 Mar 2023 10:30:28 -0400 Subject: [PATCH] {ci} Update checkout action and remove new macOS executable from super-slim --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1edb80a..cbe377f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -8,13 +8,13 @@ jobs: name: Release ACT-R Slim runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Slim Archive # "slim" removes examples, tutorials, and extras run: zip -r actr-slim-${{ github.event.release.tag_name }}.zip . -x \*.git\* \*.DS_Store \*.zip examples/\* extras/\* other-files/\* tutorial/\* - name: Slim (no env) Archive # "super slim" also removes the docs and (most of) the environment - run: zip -r actr-super-slim-${{ github.event.release.tag_name }}.zip . -x \*.git\* \*.DS_Store \*.zip docs/\* environment/\*.exe environment/GUI/\* environment/run-\* environment/start\* examples/\* extras/\* other-files/\* tutorial/\* + run: zip -r actr-super-slim-${{ github.event.release.tag_name }}.zip . -x \*.git\* \*.DS_Store \*.zip docs/\* environment/\*.exe environment/GUI/\* environment/alternate-\* environment/run-\* environment/start\* examples/\* extras/\* other-files/\* tutorial/\* - name: Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/')