Add publishing to Github Packages #3
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: | ||
push: | ||
branches: | ||
- main | ||
- features/* | ||
- release/* | ||
pull_request: | ||
branches: | ||
- main | ||
- features/* | ||
- release/* | ||
env: | ||
CI_PUBLISH: ${{ github.event_name == 'pull_request' && github.event.action == 'opened' } | ||
Check failure on line 15 in .github/workflows/build.yaml GitHub Actions / BuildInvalid workflow file
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "18" | ||
- name: Enable Corepack | ||
run: | | ||
corepack enable | ||
- name: Install dependencies | ||
run: yarn install --immutable | ||
- name: Build | ||
run: yarn run build:all | ||
- name: Lint | ||
run: yarn run lint:all | ||
publish: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Get commit version some variables | ||
shell: bash | ||
run: | | ||
echo "COMMIT=$(git rev-parse --short "$GITHUB_SHA")" >> "$GITHUB_ENV" | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: "18" | ||
- name: Enable Corepack | ||
run: | | ||
corepack enable | ||
- name: Install dependencies | ||
run: yarn install --immutable | ||
- name: Publish | ||
if: ${{ env.CI_PUBLISH }} | ||
env: | ||
PUBLISH_ARGS: --access public --new-version 0.0.1-alpha+${{ env.COMMIT }} --tag alpha | ||
run: yarn run publish:all |