From dedcf83dfa956496f499f6be0cab266b247b8b53 Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Sat, 31 Dec 2022 14:42:43 -0600 Subject: [PATCH] create executable --- .github/workflows/release.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..90c43a9 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,21 @@ +name: Release +on: + workflow_dispatch: + push: + branches: + - '*' +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v4 + with: + python-version: '3.11' + - run: pip install -r requirements.txt + - run: pyinstaller creeper.py + - name: Step 3 - Use the Upload Artifact GitHub Action + uses: actions/upload-artifact@v2 + with: + name: assets-for-download + path: dist