Deploy to Emsio Servers #89
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
| name: Deploy to Emsio Servers | |
| on: | |
| push: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Deploy to Emsio | |
| uses: AldiiX/emsio-deploy@v3 | |
| with: | |
| deploy_token: ${{ secrets.DEPLOY_TOKEN }} | |
| project_uuid: ${{ secrets.PROJECT_UUID }} | |
| # branch is optional; defaults to the current branch | |
| branch: main |