2021-07-23 12:42:50 +00:00
|
|
|
name: Docker Compose Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node-version: [15.x]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- run: yarn
|
|
|
|
- name: Linter check
|
|
|
|
run: yarn lint
|
|
|
|
build:
|
|
|
|
name: Run docker build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Get the version
|
|
|
|
id: vars
|
2021-07-28 07:58:23 +00:00
|
|
|
run: |
|
|
|
|
echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7})
|
|
|
|
echo ::set-output name=repo::$(echo ${{ github.repository }})
|
2021-07-23 12:42:50 +00:00
|
|
|
- name: Run docker build
|
2021-07-28 07:58:23 +00:00
|
|
|
run: docker build -t ${{steps.vars.outputs.repo}} .
|
2021-07-23 12:42:50 +00:00
|
|
|
- name: Tag docker image
|
2021-07-28 07:58:23 +00:00
|
|
|
run: docker tag ${{steps.vars.outputs.repo}} ghcr.io/${{steps.vars.outputs.repo}}:${{steps.vars.outputs.sha}}
|
2021-07-23 12:42:50 +00:00
|
|
|
- name: Docker Login
|
|
|
|
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u vulcanize --password-stdin
|
|
|
|
- name: Docker Push
|
2021-07-28 07:58:23 +00:00
|
|
|
run: docker push ghcr.io/${{steps.vars.outputs.repo}}:${{steps.vars.outputs.sha}}
|