dbgate/.github/workflows/build-docker.yaml

62 lines
1.5 KiB
YAML
Raw Normal View History

2020-03-15 20:10:38 +00:00
name: Docker image
2020-03-15 08:35:34 +00:00
2020-03-15 19:28:09 +00:00
# on: [push]
2020-03-15 20:10:38 +00:00
2020-03-15 19:28:09 +00:00
on:
push:
2020-06-10 16:48:54 +00:00
tags:
2021-01-23 09:33:20 +00:00
- 'v[0-9]+.[0-9]+.[0-9]+'
# - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
2020-06-10 16:48:54 +00:00
# on:
# push:
# branches:
# - production
2020-03-15 08:35:34 +00:00
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04]
steps:
- name: Context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
2021-09-28 06:15:08 +00:00
- uses: actions/checkout@v2
2020-03-15 08:35:34 +00:00
with:
fetch-depth: 1
- name: Use Node.js 14.x
2020-03-15 08:35:34 +00:00
uses: actions/setup-node@v1
with:
node-version: 14.x
2020-03-15 08:35:34 +00:00
- name: yarn install
run: |
yarn install
2020-12-10 12:31:37 +00:00
- name: setCurrentVersion
run: |
yarn setCurrentVersion
2020-03-15 20:10:38 +00:00
- name: Prepare docker image
2020-03-15 08:35:34 +00:00
run: |
2020-03-15 20:10:38 +00:00
yarn run prepare:docker
- name: Build docker image
2020-03-15 08:35:34 +00:00
run: |
2020-05-17 18:58:57 +00:00
docker build ./docker -t dbgate
2020-03-15 20:10:38 +00:00
- name: Push docker image
run: |
2020-05-17 18:58:57 +00:00
docker tag dbgate dbgate/dbgate
2020-03-15 20:10:38 +00:00
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
2020-05-17 18:58:57 +00:00
docker push dbgate/dbgate
- name: Build alpine docker image
run: |
docker build ./docker -t dbgate -f docker/Dockerfile-alpine
- name: Push alpine docker image
run: |
docker tag dbgate dbgate/dbgate:alpine
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
docker push dbgate/dbgate:alpine