Skip to content

SDSS-1376: Update stanford_earth_r25 to v8.1.14 (#498) #290

SDSS-1376: Update stanford_earth_r25 to v8.1.14 (#498)

SDSS-1376: Update stanford_earth_r25 to v8.1.14 (#498) #290

# .github/workflows/dev_branch_actions.yml
# Actions triggered on merge to current dev branch (e.g., 1.x, 2.x, etc.,).
# - Runs the tests workflow and deploys an artifact when tests pass.
name: Dev branch actions
on:
push:
branches: [4.x]
jobs:
# Run tests on current PR branch.
tests:
uses: ./.github/workflows/tests.yml
# Allow secrets to be used in the called workflow.
secrets: inherit
# Deploy branch after tests pass by calling deploy workflow.
deploy:
uses: ./.github/workflows/deploy_branch.yml
# Allow secrets to be used in the called workflow.
secrets: inherit
needs: [tests]