d5f55b5f9c
Coverage / build (push) Waiting to run
Docker / Build (push) Waiting to run
Docker / Publish (push) Blocked by required conditions
Node.js CI / build (16, macos-latest) (push) Waiting to run
Node.js CI / build (16, ubuntu-latest) (push) Waiting to run
Node.js CI / build (16, windows-latest) (push) Waiting to run
NPM / Build (22) (push) Waiting to run
NPM / Pack (push) Blocked by required conditions
NPM / Publish (push) Blocked by required conditions
56 lines
1.6 KiB
YAML
56 lines
1.6 KiB
YAML
name: Docker
|
|
|
|
on: [push, pull_request]
|
|
# push:
|
|
# branches:
|
|
# - main
|
|
# - 'v[0-9]+*'
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: reviewdog/action-shellcheck@v1
|
|
- name: Install Bats
|
|
run: |
|
|
curl -sSL -o /tmp/bats_v0.4.0.tar.gz https://github.com/sstephenson/bats/archive/v0.4.0.tar.gz
|
|
tar -xf /tmp/bats_v0.4.0.tar.gz
|
|
sudo bats-0.4.0/install.sh /usr/local
|
|
- name: Build the Docker image
|
|
run: ./scripts/docker.sh build
|
|
- name: Test the Docker image
|
|
run: ./scripts/docker.sh test
|
|
|
|
# https://www.prestonlamb.com/blog/creating-a-docker-image-with-github-actions
|
|
publish:
|
|
name: Publish
|
|
needs: [build]
|
|
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/v'))
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v1
|
|
with:
|
|
platforms: all
|
|
|
|
# https://github.com/docker/setup-buildx-action
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
with:
|
|
install: true
|
|
version: latest
|
|
|
|
- name: Builder instance name
|
|
run: echo ${{ steps.buildx.outputs.name }}
|
|
- name: Available platforms
|
|
run: echo ${{ steps.buildx.outputs.platforms }}
|
|
|
|
- name: Login to DockerHub Registry
|
|
run: echo ${{ secrets.DOCKER_PERSONAL_ACCESS_TOKEN }} | docker login -u zixia --password-stdin
|
|
- name: Deploy to Docker Hub
|
|
run: ./scripts/docker.sh deploy
|