diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 771ce7594..995737903 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -3,6 +3,8 @@ on: push: branches: - main + workflow_dispatch: # Can be invoked manually from the UI + workflow_call: # Can be invoked from other workflows permissions: contents: write jobs: @@ -10,6 +12,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + with: + ref: 'main' # Force getting the latest - uses: actions/setup-python@v4 with: python-version: 3.x