From ec79c0da4cff67721ad4450320fb1955eac9649b Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 13 Aug 2023 03:04:23 -0400 Subject: [PATCH] ci: setup --- .github/workflows/ci.yml | 62 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..2d4f718 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,62 @@ +name: Build/Publish + +on: + push: + branches: + - master + - develop + - develop-* + workflow_call: + +jobs: + build: + runs-on: ubuntu-latest + env: + RCLONE_CONFIG_S3_TYPE: s3 + RCLONE_CONFIG_S3_PROVIDER: Cloudflare + RCLONE_CONFIG_S3_ACCESS_KEY_ID: ${{ secrets.S3_ACCESS_KEY }} + RCLONE_CONFIG_S3_SECRET_ACCESS_KEY: ${{ secrets.S3_SECRET_KEY }} + RCLONE_CONFIG_S3_ENDPOINT: ${{ secrets.CF_ACCOUNT_ID }}.r2.cloudflarestorage.com + steps: + - uses: actions/checkout@v3 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: 18.x + cache: 'npm' + - run: npm ci + - run: npm run build --if-present + env: + NODE_OPTIONS: "--max_old_space_size=4096" + - name: Install SSH key + uses: shimataro/ssh-key-action@v2 + with: + key: ${{ secrets.GITEA_SSH_KEY }} + known_hosts: ${{ secrets.GITEA_KNOWN_HOST }} + - name: Publish + run: npm run semantic-release + env: + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + + - name: Clean Up Robots Dev + if: ${{ github.ref_name == 'develop' }} + run: mv dist/robots-dev.txt dist/robots.txt + + - name: Clean Up Robots Prod + if: ${{ github.ref_name == 'master' }} + run: rm dist/robots-dev.txt + + - name: Setup RClone + run: curl https://rclone.org/install.sh | sudo bash -s + - name: Publish to S3 Dev + if: ${{ github.ref_name == 'develop' }} + run: rclone sync dist/ s3:${{ vars.S3_BUCKET_DEV }}/ + + - name: Publish to S3 Prod + if: ${{ github.ref_name == 'master' }} + run: rclone sync dist/ s3:${{ vars.S3_BUCKET }}/ + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 + if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled && failure() }} + with: + limit-access-to-actor: true