-
Notifications
You must be signed in to change notification settings - Fork 4
99 lines (86 loc) · 2.96 KB
/
publish-swap.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
96
97
98
99
name: publish-swap
on:
push:
paths:
- apps/swap/**
- libs/**
- package.json
- bun.lockb
- .github/workflows/publish-swap.yml
workflow_dispatch:
jobs:
wait-for-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const { owner, repo } = context.repo;
const ref = context.sha;
while (true) {
const { data: checks } = await github.rest.checks.listForRef({
owner,
repo,
ref,
check_name: 'run-unit-tests'
});
if (checks.check_runs.length > 0) {
const status = checks.check_runs[0].status;
const conclusion = checks.check_runs[0].conclusion;
if (status === 'completed') {
if (conclusion === 'success') {
console.log('Tests passed!');
break;
} else {
throw new Error('Tests failed!');
}
}
}
await new Promise(r => setTimeout(r, 10000));
}
docker:
needs: wait-for-tests
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
bitsacco/swap
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=sha
- name: Login to Docker Hub
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
uses: docker/login-action@v2
with:
username: okjodom
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and push swap
uses: docker/build-push-action@v4
with:
file: apps/swap/Dockerfile
push: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Checkout repository content
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
uses: actions/checkout@v4
# This workflow requires the repository content to be locally available to read the README
- name: Update the Docker Hub description
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
uses: peter-evans/dockerhub-description@v3
with:
username: okjodom
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
repository: bitsacco/swap
readme-filepath: ./apps/swap/README.md