-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (54 loc) · 2.26 KB
/
deploy-release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Deploy Release
on:
workflow_dispatch:
# Ensure only one instance of either this is running at a time.
# This ensures that we don't put production into an inconsistent state.
concurrency:
group: "prod-deployment"
jobs:
prepare-production-deployment:
runs-on: ubuntu-latest
permissions:
contents: write # Write is required to create a draft release
outputs:
release-id: ${{ steps.pre_release.outputs.release-id }}
is-existing-release: ${{ steps.pre_release.outputs.is-existing-release }}
steps:
- name: Perform pre-release actions
uses: abusix/github-release-actions/[email protected]
id: pre_release
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
release-version: ${{github.ref_name}}
- name: Echo the outputs
run: |
echo "releaseId: ${{ steps.pre_release.outputs.release-id }}"
echo "isExistingRelease: ${{ steps.pre_release.outputs.is-existing-release }}"
deploy-production:
runs-on: ubuntu-latest
needs: prepare-production-deployment
permissions:
packages: write
contents: write # Write is required to delete intermediate releases and publish the final release
environment: production
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Deploy to Production
# To emulate deployments here we are simply shifting the latest tag to the appropriate docker image.
# In a real world scenario, you would replace this with your actual deployment steps.
run: |
docker pull ghcr.io/${{ github.repository }}:${{github.ref_name}}
docker tag ghcr.io/${{ github.repository }}:${{github.ref_name}} ghcr.io/${{ github.repository }}:latest
docker push ghcr.io/${{ github.repository }}:latest
- name: Perform post-release actions
uses: abusix/github-release-actions/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
release-id: ${{ needs.prepare-production-deployment.outputs.release-id }}