Skip to content

Commit

Permalink
actions: experimental thumbs artifact
Browse files Browse the repository at this point in the history
Also renames an unrelated file... Groan...
  • Loading branch information
towerofnix committed Oct 28, 2023
1 parent 1c3846b commit c5e5c9f
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/archive_thumbnails_artifact.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Archive Thumbnails Artifact

on:
push:
branches: [ "release" "staging" "preview" ]

workflow_dispatch: null

jobs:
prepare_media:
runs-on: ubuntu-latest

steps:
- name: Install ImageMagick
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: imagemagick
version: 1.0

- name: Checkout corresponding canonical data repo
uses: actions/checkout@v4
with:
repository: hsmusic/hsmusic-data
ref: ${{ github.ref_name }}
path: data

- name: Checkout media repo
uses: actions/checkout@v4
with:
repository: hsmusic/hsmusic-media
ref: ${{ github.ref }}
path: media

- name: Generate thumbnails
run: |
node code/src/upd8.js \
--show-step-summary \
--data-path data \
--media-path media \
--thumbs-only
- name: Archive thumbnails artifact
uses: actions/upload-artifact@v3
with:
name: media
path: media
File renamed without changes

0 comments on commit c5e5c9f

Please sign in to comment.