-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (44 loc) · 1.85 KB
/
CI.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
name: CI
on:
push:
branches:
- 'main'
env:
IMAGE_NAME: company4-algorithm-2
jobs:
docker:
name: Docker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Only build and push docker image if this action is triggered from the main branch.
- name: Build Docker image
if: ${{ github.ref == 'refs/heads/main' }}
run: docker build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"
- name: Log in to Github Package registry
if: ${{ github.ref == 'refs/heads/main' }}
run: echo "${{ secrets.GITHUB_TOKEN}}" | docker login ghcr.io -u $ --password-stdin
- name: Push image to registry
if: ${{ github.ref == 'refs/heads/main' }}
run: |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention
[ "$VERSION" == "main" ] && VERSION=latest
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION
- name: Trigger event to execute integration tests
uses: peter-evans/repository-dispatch@v2
if: ${{ github.ref == 'refs/heads/main' }}
with:
token: ${{ secrets.REPO_ACCESS_TOKEN }}
repository: seng499-s22-company3/shared
event-type: company4-algorithm-2
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "repo": "company4-algorithm-2"}'