diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 6166733..b814e3e 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -28,20 +28,18 @@ jobs: url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: - - name: Checkout Master + - name: Checkout Master, Dev, 2019 uses: actions/checkout@v3 with: ref: master - name: Checkout Dev Branch - uses: actions/checkout@v3 - with: - path: branch/dev - ref: dev + run: | + git fetch --depth=1 origin dev + git worktree add branch/dev dev - name: Checkout 2019 bingo as a branch - uses: actions/checkout@v3 - with: - path: branch/2019 - ref: 7f4e4e83d8c11f05f77870a6223783d104bdc77e + run: | + git fetch --depth=1 origin 7f4e4e83d8c11f05f77870a6223783d104bdc77e + git worktree add branch/2019 7f4e4e83d8c11f05f77870a6223783d104bdc77e - name: Setup Pages uses: actions/configure-pages@v2 - name: Upload artifact