All #190
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
name: All | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 0 * * 2 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: "true" | |
# https://github.com/docker/login-action | |
- name: Log into docker hub | |
uses: docker/login-action@v2 | |
with: | |
username: sdrzlyz | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build base image | |
run: | | |
bash ./build.sh alpine | |
bash ./build.sh alpine-glibc | |
- name: Build infra image | |
run: | | |
bash ./build.sh envoy | |
bash ./build.sh ffmpeg alpine-static | |
bash ./build.sh go-dev | |
bash ./build.sh ikev2 | |
bash ./build.sh nginx | |
bash ./build.sh nginx ffmpeg | |
bash ./build.sh nginx mainline | |
bash ./build.sh pg 14 | |
bash ./build.sh pg 15 | |
bash ./build.sh redis | |
bash ./build.sh tools | |
bash ./build.sh centos-sshd | |
bash ./build.sh ubuntu |