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

55 lines
1.2 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]
# os: [macOS-10.14, windows-2016, ubuntu-18.04]
steps:
- name: Context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Use Node.js 10.x
uses: actions/setup-node@v1
with:
node-version: 10.x
- 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