Fix setting sqlsrv PK name with qualified table name (#2306) #21
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_docs_0x' | |
on: | |
push: | |
tags: | |
- 0.* | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: Branch to run on | |
default: 0.x | |
required: true | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cloning repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.inputs.branch }} | |
- name: Push to dokku | |
uses: dokku/github-action@master | |
with: | |
git_remote_url: 'ssh://[email protected]:22/phinx-docs' | |
ssh_private_key: ${{ secrets.DOKKU_SSH_PRIVATE_KEY }} |