From f0a35bf6a225e0535f014d3f5ef050e6bd27bc67 Mon Sep 17 00:00:00 2001 From: Bobby Galli Date: Thu, 12 Sep 2024 15:13:32 -0400 Subject: [PATCH] chore: add build action --- .github/workflows/build.yml | 40 +++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..53c078b --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,40 @@ +name: Build + +on: + push: + +jobs: + build-and-run: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + with: + repository: BugSplat-Git/my-ubuntu-crasher + path: my-ubuntu-crasher + + - name: Set PROJECT_DIR environment variable + run: echo "PROJECT_DIR=${{ github.workspace }}/my-ubuntu-crasher" >> $GITHUB_ENV + + - name: Run script + working-directory: ${{ env.PROJECT_DIR }} + run: | + #!/bin/bash + cd scripts + source exports.sh + mkdir -p $OUT_DIR + bash compile.sh + bash handler.sh + bash attachment.sh + + - name: Upload Symbols + uses: BugSplat-Git/symbol-upload@main + with: + clientId: "${{ secrets.SYMBOL_UPLOAD_CLIENT_ID }}" + clientSecret: "${{ secrets.SYMBOL_UPLOAD_CLIENT_SECRET }}" + database: "${{ secrets.BUGSPLAT_DATABASE }}" + application: "my-ubuntu-crasher" + version: "1.0.0" + files: "**/*.sym" + directory: "${{ env.PROJECT_DIR }}/out"