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

46 lines
1.0 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:
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-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-03-15 20:10:38 +00:00
docker build ./docker -t dbgate:future
- name: Push docker image
run: |
docker tag dbgate:future dbgate/dbgate:future
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
docker push dbgate/dbgate:future