-
Notifications
You must be signed in to change notification settings - Fork 0
95 lines (93 loc) · 2.67 KB
/
main.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: Main workflow
on:
push:
branches:
- main
pull_request:
branches:
- main
release:
types:
- published
jobs:
lint_test_build:
name: Lint, test and build
if: github.event_name == 'push' || github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Enable corepack
run: corepack enable
- uses: actions/setup-node@v4
env:
yarn: 4.4.0
with:
node-version: 22
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn run lint
- name: Test
env:
ROUTE_PREFIX: /upload
LOGGER_LEVEL: error
run: yarn run test
- name: build
run: yarn run build
push_latest_dockerhub:
name: Push image with latest tag to DockerHub
if: github.event_name == 'push'
runs-on: ubuntu-latest
needs: [lint_test_build]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Login to DockerHub
env:
DOCKER_HUB_USER: ${{ secrets.DOCKER_HUB_USER }}
DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
run: docker login -u $DOCKER_HUB_USER -p $DOCKER_HUB_ACCESS_TOKEN
- name: Build and tag Docker image
env:
USER: ${{ secrets.DOCKER_HUB_USER }}
REPOSITORY: aws-upload-service
TAG: latest
run: docker build -t $USER/$REPOSITORY:$TAG .
- name: Push Docker image
env:
USER: ${{ secrets.DOCKER_HUB_USER }}
REPOSITORY: aws-upload-service
TAG: latest
run: docker push $USER/$REPOSITORY:$TAG
push_release_dockerhub:
name: Push image with release version tag to DockerHub
if: github.event_name == 'release'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set tag variable
id: version
run: echo ::set-output name=tag::${GITHUB_REF#"refs/tags/"}
- name: Login to DockerHub
env:
DOCKER_HUB_USER: ${{ secrets.DOCKER_HUB_USER }}
DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
run: docker login -u $DOCKER_HUB_USER -p $DOCKER_HUB_ACCESS_TOKEN
- name: Build and tag Docker image
env:
USER: ${{ secrets.DOCKER_HUB_USER }}
REPOSITORY: aws-upload-service
TAG: ${{ steps.version.outputs.tag }}
run: docker build -t $USER/$REPOSITORY:$TAG .
- name: Push Docker image
env:
USER: ${{ secrets.DOCKER_HUB_USER }}
REPOSITORY: aws-upload-service
TAG: ${{ steps.version.outputs.tag }}
run: docker push $USER/$REPOSITORY:$TAG