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

48 lines
1.0 KiB
YAML
Raw Normal View History

2021-05-27 13:46:21 +00:00
name: Docker image BETA
2021-04-29 18:47:35 +00:00
# on: [push]
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+'
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
2021-04-29 18:47:35 +00:00
with:
fetch-depth: 1
2021-11-07 10:56:09 +00:00
- name: Use Node.js 12.x
2021-04-29 18:47:35 +00:00
uses: actions/setup-node@v1
with:
2021-11-07 10:56:09 +00:00
node-version: 12.x
2021-04-29 18:47:35 +00:00
- name: yarn install
run: |
yarn install
- name: setCurrentVersion
run: |
yarn setCurrentVersion
- name: Prepare docker image
run: |
yarn run prepare:docker
- name: Build docker image
run: |
docker build ./docker -t dbgate
- name: Push docker image
run: |
docker tag dbgate dbgate/dbgate:beta
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
docker push dbgate/dbgate:beta