chore: Update sql_saga to 9e39fcc (security + bug fixes after agent r… #59
This file contains hidden or 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
| # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
| name: "demo.statbus.org<-devops/deploy-to-demo" | |
| on: | |
| # Allow manual deployment in github | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - "devops/deploy-to-demo" | |
| # Deploys are serial for a deploy branch. | |
| concurrency: | |
| group: ${{ github.ref_name }} | |
| cancel-in-progress: false | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: executing remote ssh commands | |
| uses: appleboy/ssh-action@v1.0.0 | |
| with: | |
| host: niue.statbus.org | |
| username: statbus_demo | |
| key: ${{ secrets.SSH_KEY }} | |
| command_timeout: 60m | |
| script: statbus/devops/deploy.sh |