From b102b53c1ecf07fe8b993be476805ad37554f54e Mon Sep 17 00:00:00 2001 From: Bruno Perel Date: Thu, 22 Aug 2024 16:45:43 +0200 Subject: [PATCH] WIP calculate changed apps --- .github/workflows/deploy.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 000000000..49d491cd5 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,21 @@ +name: deploy + +on: + workflow_dispatch: + push: + branches: + - "test-monorepo-build" +jobs: + myjob: + runs-on: ubuntu-latest + name: My Job + steps: + - uses: actions/checkout@v4 + with: + # We need to fetch all branches and commits so that Nx affected has a base to compare against. + fetch-depth: 0 + - name: Derive appropriate SHAs for base and head for `nx affected` commands + uses: nrwl/nx-set-shas@v4 + + - run: | + echo "BASE: ${{ env.NX_BASE }}"