Scroll to top when using pagination #2897
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Deploy to Staging" | |
on: | |
pull_request_target: | |
types: [labeled] | |
workflow_dispatch: | |
inputs: | |
server: | |
description: "Staging Server" | |
type: choice | |
required: true | |
options: | |
- staging.openfoodnetwork.org.uk | |
- staging.openfoodnetwork.org.au | |
- staging.coopcircuits.fr | |
commit_ref: | |
description: "Commit Reference" | |
type: string | |
required: false | |
jobs: | |
deploy_pr: | |
if: contains(fromJSON('["pr-staged-uk", "pr-staged-au", "pr-staged-fr"]'), github.event.label.name) | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check user has write access" | |
uses: "lannonbr/[email protected]" | |
with: | |
permission: "write" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Configure deployment key | |
if: success() | |
run: | | |
install -m 600 -D /dev/null ~/.ssh/id_rsa | |
echo "${{ secrets.DEPLOYMENT_KEY }}" > ~/.ssh/id_rsa | |
echo "${{ secrets.DEPLOYMENT_HOSTS }}" > ~/.ssh/known_hosts | |
- name: Deploy to Staging | |
if: success() | |
run: | | |
ssh ofn-deploy@${{ github.event.label.description }} -o LogLevel=ERROR "pull-request-${{ github.event.pull_request.number }} ." | |
deploy_branch: | |
if: ${{ inputs.server }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check user has write access" | |
uses: "lannonbr/[email protected]" | |
with: | |
permission: "write" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Configure deployment key | |
if: success() | |
run: | | |
install -m 600 -D /dev/null ~/.ssh/id_rsa | |
echo "${{ secrets.DEPLOYMENT_KEY }}" > ~/.ssh/id_rsa | |
echo "${{ secrets.DEPLOYMENT_HOSTS }}" > ~/.ssh/known_hosts | |
- name: Deploy to Staging | |
if: success() | |
run: | | |
ssh ofn-deploy@${{ inputs.server }} -o LogLevel=ERROR "$GITHUB_REF_NAME ${{ inputs.commit_ref || github.sha }}" |