feat: SHIMMER - Update all post header images to use aspect ratio 16… #10
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
name: Build and create zip - Shimmer Blog | |
on: | |
push: | |
branches: | |
- feat/shimmer-blog | |
jobs: | |
build_create_zip_shimmer: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 14 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
- name: Install dependencies && build | |
run: cd src && yarn && yarn build | |
- name: Create zip | |
run: zip -r liebling.zip ./* -x 'node_modules/*' -x '*src*' | |
- name: 'Upload Artifact' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: SHIMMER_Blog | |
path: liebling.zip | |
- name: Download all workflow run artifacts | |
uses: actions/download-artifact@v3 |