Add and update some addon images #462
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
branches: | |
- master | |
types: | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
- ready_for_review | |
name: Danger (Generate) | |
concurrency: | |
group: danger-generate-${{ github.event.number }} | |
cancel-in-progress: true | |
jobs: | |
generate: | |
name: Generate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ScratchAddons/website-v2 | |
uses: actions/checkout@v4 | |
with: | |
path: repo | |
- name: Checkout ScratchAddons/website-v2-script | |
uses: actions/checkout@v4 | |
with: | |
repository: ScratchAddons/website-v2-script | |
path: script | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('.github/workflows/danger-generate.yml') }} | |
restore-keys: ${{ runner.os }}-node- | |
- name: Execute script | |
run: | | |
echo Running... | |
cd repo | |
bash ../script/sh/danger-generate.sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PR_NUMBER: ${{ github.event.number }} | |
- name: Upload for sending | |
uses: actions/upload-artifact@v4 | |
with: | |
name: to-send | |
path: | | |
dangerfile.js | |
pr-number |