Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@ jobs:
deploy-to-npm-branch:
name: Deploy to `npm` branch
needs: ci
if: github.ref == 'refs/heads/main'
if: github.ref == 'refs/heads/17.x.x'
permissions:
contents: write # for actions/checkout and to push branch
uses: ./.github/workflows/deploy-artifact-as-branch.yml
with:
environment: npm-branch
artifact_name: npmDist
target_branch: npm
commit_message: "Deploy ${{github.event.workflow_run.head_sha}} to 'npm' branch"
commit_message: "Deploy ${{ github.sha }} to 'npm' branch"

deploy-to-deno-branch:
name: Deploy to `deno` branch
needs: ci
if: github.ref == 'refs/heads/main'
if: github.ref == 'refs/heads/17.x.x'
permissions:
contents: write # for actions/checkout and to push branch
uses: ./.github/workflows/deploy-artifact-as-branch.yml
with:
environment: deno-branch
artifact_name: denoDist
target_branch: deno
commit_message: "Deploy ${{github.event.workflow_run.head_sha}} to 'deno' branch"
commit_message: "Deploy ${{ github.sha }} to 'deno' branch"
Loading