-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (53 loc) · 1.63 KB
/
dockerci.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
name: Node.js CI & Autobuild
on: [push, pull_request]
jobs:
check-changes:
runs-on: ubuntu-latest
outputs:
changed: ${{ steps.check.outputs.container }}
steps:
- uses: actions/checkout@v2
- uses: dorny/paths-filter@v2
name: Buscando cambios en el Dockerfile o package.json 🔍
id: check
with:
filters: |
container:
- 'Dockerfile'
- 'package.json'
build-and-push:
runs-on: ubuntu-latest
needs: check-changes
if: needs.check-changes.outputs.changed == 'true'
steps:
- uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login en GitHub Container Registry
uses: docker/login-action@v1
with:
username: ${{ github.repository_owner }}
password: ${{ secrets.SECRET_KEY }}
registry: ghcr.io
- name: Build y push hacia GHCR
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: ghcr.io/manueljnunez/footstats:latest
test:
runs-on: ubuntu-latest
needs: build-and-push
if: ${{ always() }}
steps:
- uses: actions/checkout@v2
- name: Login en GHCR
uses: docker/login-action@v1
with:
username: ${{ github.repository_owner }}
password: ${{ secrets.SECRET_KEY }}
registry: ghcr.io
- name: Obteniendo y ejecutando contenedor 🧪
run: docker run -t -v `pwd`:/test ghcr.io/manueljnunez/footstats:latest