-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (45 loc) · 1.38 KB
/
github-actions.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
name: Build Images
run-name: ${{ github.actor }}
on:
push:
branches:
- main
jobs:
docker-images:
runs-on: Ubuntu-latest
permissions:
contents: read
packages: write
actions: read
steps:
- uses: actions/checkout@v3
- run: docker-compose -f ./Cluster/docker-compose.yml build
- run: docker-compose -f ./Cluster/docker-compose.yml up -d
- run: docker-compose -f ./Cluster/docker-compose.yml down
- run: docker login ghcr.io -u ${{ github.repository_owner }} -p ${{ secrets.GITHUB_TOKEN }}
- name: Delete old packages
uses: SmartsquareGmbH/[email protected]
with:
type: docker
token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ github.repository }}
user: ${{ github.repository_owner }}
names: |
deightma_coordinator
bicubic_interpolation_service
deightma_master
deightma_nodecs
keep: 1
- run: |
docker push ghcr.io/saetch/deightma_coordinator:latest
- run: |
docker push ghcr.io/saetch/bicubic_interpolation_service:latest
- run: |
docker push ghcr.io/saetch/deightma_master:latest
- run: |
docker push ghcr.io/saetch/deightma_nodecs:latest
build-client:
runs-on: Ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: dotnet build ./Client/Client.csproj