Skip to content

build(gha): fix nx commands not working #4

build(gha): fix nx commands not working

build(gha): fix nx commands not working #4

Workflow file for this run

name: 'Release new version 🚀'
on:
push:
branches:
- main
- beta
- alpha
paths-ignore:
- ./**/*.md
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
uses: ./.github/workflows/test.yml
secrets: inherit
release:
runs-on: ubuntu-22.04
needs:
- test
steps:
# TODO: replace GH_REPO_TOKEN with token generated by this step when apps can bypass status checks
- uses: myparcelnl/actions/setup-git-credentials@v3
id: credentials
with:
app-id: ${{ secrets.MYPARCEL_APP_ID }}
private-key: ${{ secrets.MYPARCEL_APP_PRIVATE_KEY }}
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_REPO_TOKEN }}
fetch-depth: 0
- name: 'Build'
shell: bash
# language=sh
run: |
yarn nx run-many \
--runner="cloud" \
--output-style="static" \
--target="build"
# TODO: uncomment when on main
# - uses: actions/upload-pages-artifact@v1
# with:
# path: dist
# TODO implement release flow with monodeploy
# TODO: uncomment when on main
# deploy:
# needs: release
# runs-on: ubuntu-22.04
# permissions:
# pages: write
# id-token: write
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}
# steps:
# - name: Deploy to GitHub Pages
# id: deployment
# uses: actions/deploy-pages@v1
rebase-prs:
needs: release
if: always()
runs-on: ubuntu-22.04
steps:
- uses: myparcelnl/actions/setup-git-credentials@v3
id: credentials
with:
app-id: ${{ secrets.MYPARCEL_APP_ID }}
private-key: ${{ secrets.MYPARCEL_APP_PRIVATE_KEY }}
- uses: peter-evans/rebase@v2
with:
token: ${{ steps.credentials.outputs.token }}
base: ${{ github.ref_name }}
exclude-drafts: true
exclude-labels: 'dependencies'