-
Notifications
You must be signed in to change notification settings - Fork 17
47 lines (47 loc) · 1.48 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
name: unit-tests
on:
push:
schedule:
- cron: "0 0 * * 1"
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
submodules: true
- uses: actions/setup-python@master
- run: make prepare
# Create empty command dir for later missing command testing
- run: mkdir scripts/commands/awsinfo
- run: make test
env:
AWS_DEFAULT_REGION: eu-central-1
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- run: make shellcheck || exit 0
docker:
runs-on: ubuntu-latest
needs: unit-test
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: theserverlessway/awsinfo:latest
cache-from: type=registry,ref=theserverlessway/awsinfo:buildcache
cache-to: type=registry,ref=theserverlessway/awsinfo:buildcache,mode=max