From ae376af74f975cc61fc3b1722fc1f7aa5becbc77 Mon Sep 17 00:00:00 2001 From: Zakary Timson Date: Wed, 6 Dec 2023 20:22:01 +0000 Subject: [PATCH] Add .github/workflows/build.yaml --- .github/workflows/build.yaml | 45 ++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..d0b1b68 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,45 @@ +name: Build Game +run-name: Build Game + +on: + push: + +jobs: + build: + name: Build NPM Project + runs-on: ubuntu-latest + container: node + steps: + - name: Clone Repository + uses: ztimson/actions/clone@develop + + - name: Install Dependencies + run: npm i + + - name: Build Project + run: npm run build + + - name: Upload Artifacts + if: ${{inputs.artifacts}} != "false" + uses: actions/upload-artifact@v3 + with: + name: game + path: dist + retention-days: 7 + + tag: + name: Tag Version + needs: build + runs-on: ubuntu-latest + container: node + steps: + - name: Clone Repository + uses: ztimson/actions/clone@develop + + - name: Get Version Number + run: echo "VERSION=$(cat package.json | grep version | grep -Eo ':.+' | grep -Eo '[[:alnum:]\.\/\-]+')" >> $GITHUB_ENV + + - name: Tag Version + uses: ztimson/actions/tag@develop + with: + tag: ${{env.VERSION}} \ No newline at end of file