Attempt to use deployments more properly
This commit is contained in:
parent
0cd6e02c99
commit
98733057a7
1 changed files with 28 additions and 23 deletions
51
.github/workflows/build.yaml
vendored
51
.github/workflows/build.yaml
vendored
|
@ -47,18 +47,6 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# if: github.event_name == 'push' && github.ref == 'develop'
|
# if: github.event_name == 'push' && github.ref == 'develop'
|
||||||
steps:
|
steps:
|
||||||
- name: Create Deployment ID
|
|
||||||
uses: altinukshini/deployment-action@v1.2.6
|
|
||||||
id: deployment
|
|
||||||
with:
|
|
||||||
token: "${{ github.token }}"
|
|
||||||
environment_url: https://develop.element.io
|
|
||||||
environment: Develop
|
|
||||||
initial_status: in_progress
|
|
||||||
pr: true
|
|
||||||
pr_id: ${{ github.event.pull_request.number }}
|
|
||||||
ref: ${{ github.head_ref }}
|
|
||||||
|
|
||||||
- name: Find Artifact ID
|
- name: Find Artifact ID
|
||||||
uses: actions/github-script@v3.1.0
|
uses: actions/github-script@v3.1.0
|
||||||
id: find_artifact
|
id: find_artifact
|
||||||
|
@ -75,28 +63,45 @@ jobs:
|
||||||
})[0];
|
})[0];
|
||||||
return matchArtifact.id;
|
return matchArtifact.id;
|
||||||
|
|
||||||
# TODO
|
- name: Create Deployment
|
||||||
- name: Invoke deployment hook
|
uses: avakar/create-deployment@v1
|
||||||
uses: distributhor/workflow-webhook@v2
|
id: deployment
|
||||||
env:
|
env:
|
||||||
webhook_url: https://test.tun.bit.ovh
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
webhook_secret: FooBar
|
with:
|
||||||
data: '{ "artifact_id": "${{steps.find_artifact.outputs.result}}" }'
|
environment: Develop
|
||||||
|
initial_status: in_progress
|
||||||
|
ref: ${{ github.head_ref }}
|
||||||
|
transient_environment: true
|
||||||
|
auto_merge: false
|
||||||
|
task: deploy
|
||||||
|
payload: '{"artifact_id": "${{ steps.find_artifact.outputs.result }}"}'
|
||||||
|
|
||||||
|
# TODO
|
||||||
|
# - name: Invoke deployment hook
|
||||||
|
# uses: distributhor/workflow-webhook@v2
|
||||||
|
# env:
|
||||||
|
# webhook_url: https://test.tun.bit.ovh
|
||||||
|
# webhook_secret: FooBar
|
||||||
|
# data: '{ "artifact_id": "${{steps.find_artifact.outputs.result}}" }'
|
||||||
|
|
||||||
- name: Update deployment status (success)
|
- name: Update deployment status (success)
|
||||||
if: success()
|
if: success()
|
||||||
uses: altinukshini/deployment-status@v1.0.1
|
uses: avakar/set-deployment-status@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
token: "${{ github.token }}"
|
environment: Develop
|
||||||
environment_url: https://develop.element.io
|
environment_url: https://develop.element.io
|
||||||
state: "success"
|
state: "success"
|
||||||
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
|
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
|
||||||
pr: true
|
auto_inactive: true
|
||||||
pr_id: ${{ github.event.pull_request.number }}
|
|
||||||
- name: Update deployment status (failure)
|
- name: Update deployment status (failure)
|
||||||
if: failure()
|
if: failure()
|
||||||
uses: altinukshini/deployment-status@v1.0.1
|
uses: altinukshini/deployment-status@v1.0.1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
token: "${{ github.token }}"
|
|
||||||
state: "failure"
|
state: "failure"
|
||||||
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
|
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
|
||||||
|
environment: Develop
|
||||||
|
|
Loading…
Add table
Reference in a new issue