v61.9.2 #163
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
name: Build | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
tutor: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout release tag | |
uses: actions/checkout@v2 | |
- name: Install npm | |
uses: bahmutov/npm-install@v1 | |
with: | |
install-command: yarn --frozen-lockfile --ignore-optional | |
- name: Build tutor-js assets | |
run: yarn run build tutor | |
env: | |
RELEASE_VERSION: ${{ github.event.release.tag_name }} | |
exercises: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout release tag | |
uses: actions/checkout@v2 | |
- name: Install npm | |
uses: bahmutov/npm-install@v1 | |
with: | |
install-command: yarn --frozen-lockfile --ignore-optional | |
- name: Build exercises-js assets | |
run: yarn run build exercises | |
env: | |
RELEASE_VERSION: ${{ github.event.release.tag_name }} |