ci: testing upload build script

This commit is contained in:
Chubby Granny Chaser 2024-12-09 22:56:49 +00:00
parent fa273a13f2
commit 235045dec4
No known key found for this signature in database
4 changed files with 10757 additions and 8 deletions

View file

@ -14,6 +14,14 @@ jobs:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20.18.0
- name: Install dependencies
run: yarn
- name: Test Upload build
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
@ -24,14 +32,6 @@ jobs:
BUILD_WEBHOOK_URL: ${{ secrets.BUILD_WEBHOOK_URL }}
run: node scripts/upload-build.cjs
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20.18.0
- name: Install dependencies
run: yarn
- name: Install Python
uses: actions/setup-python@v5
with: