diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2024-10-26 19:47:50 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2024-10-26 19:47:50 -0500 |
| commit | 5fb5600ad749821145b6449dd2f6cf9ad8582497 (patch) | |
| tree | a6715a55fdaa150f18749d86c20198e0fd1420d5 /.github | |
| parent | 141eb93dd2c4492509d146078190009d0aa32b52 (diff) | |
this might fix the issue...
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/deploy_static.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/deploy_static.yml b/.github/workflows/deploy_static.yml index 55818fa..455b15c 100644 --- a/.github/workflows/deploy_static.yml +++ b/.github/workflows/deploy_static.yml @@ -2,7 +2,7 @@ name: Deploy Website to Github Pages on: push: - branches: ["build"] + branches: ["main"] workflow_dispatch: permissions: @@ -21,8 +21,11 @@ jobs: url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: + # switch to build branch - name: Checkout uses: actions/checkout@v4 + with: + ref: build - name: Setup Pages uses: actions/configure-pages@v5 |
