-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (56 loc) · 1.86 KB
/
deploy.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
name: deploy
on:
push:
jobs:
setup_workflow_env:
runs-on: ubuntu-latest
outputs:
image_tagged: apis-rdf-devops-new
registry_root: ghcr.io/${{ github.repository }}/
APP_ROOT: "/"
steps:
- run: "/bin/true"
build_and_push_to_registry:
runs-on: ubuntu-latest
needs: [setup_workflow_env]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Login to ghcr.io
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata
id: meta
uses: docker/metadata-action@v4
with:
images: |
${{ needs.setup_workflow_env.outputs.registry_root }}${{ needs.setup_workflow_env.outputs.image_tagged }}/${{ github.ref_name }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=raw,value=latest
type=raw,value={{sha}}
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
tags: ${{ steps.meta.outputs.tags }}
push: true
deploy:
needs: [setup_workflow_env, build_and_push_to_registry]
uses: acdh-oeaw/gl-autodevops-minimal-port/.github/workflows/deploy-cluster-2.yml@main
secrets: inherit
with:
DOCKER_TAG: ${{ needs.setup_workflow_env.outputs.registry_root }}${{ needs.setup_workflow_env.outputs.image_tagged }}/${{ github.ref_name }}
APP_ROOT: ${{ needs.setup_workflow_env.outputs.APP_ROOT }}
APP_NAME: sicprod-dev-test
SERVICE_ID: "21704"
PUBLIC_URL: "https://sicprod-test.acdh-ch-dev.oeaw.ac.at"
environment: "SicProD Test"