diff --git a/.github/workflows/test-action-remote.yml b/.github/workflows/test-action-remote.yml new file mode 100644 index 0000000..cb0890b --- /dev/null +++ b/.github/workflows/test-action-remote.yml @@ -0,0 +1,29 @@ +name: 'action-test-remote' +on: + pull_request: + push: + branches: + - main + +jobs: + action: + runs-on: ubuntu-latest + steps: + - name: Notify deployment start + uses: maxgfr/github-multi-deployments@v1.3.2 + id: deployment + with: + step: start + token: ${{ secrets.GITHUB_TOKEN }} + desc: 'Deploying remote environment' + env: '["envRemote"]' + debug: true + + - name: Notify deployment finish + uses: maxgfr/github-multi-deployments@v1.3.2 + with: + step: finish + status: 'success' + token: ${{ secrets.GITHUB_TOKEN }} + deployment_id: ${{ steps.deployment.outputs.deployment_id }} + debug: true