From dfb4d431252e72ffe5702ac78d7da31a3fc41acc Mon Sep 17 00:00:00 2001 From: maxgfr <25312957+maxgfr@users.noreply.github.com> Date: Thu, 9 Jun 2022 19:41:28 +0200 Subject: [PATCH 1/2] feat: test action --- .github/workflows/test-action-remote.yml | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/test-action-remote.yml 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 From b16e3a41a3fbb970e6e53df265da1985420a93da Mon Sep 17 00:00:00 2001 From: maxgfr <25312957+maxgfr@users.noreply.github.com> Date: Thu, 9 Jun 2022 19:47:54 +0200 Subject: [PATCH 2/2] fix: action