watcher-ts/.github/workflows/on-main.yaml
Ashwin Phatak 3e9aa4d066
Fix github actions (#167)
* sorry, lazy commit

* another lazy commit

* Update on-main.yaml

* Fixed.

* Update on-main.yaml

* Update on-main.yaml

* Update on-main.yaml

* Update on-main.yaml

* Update on-main.yaml

* Update on-main.yaml

Co-authored-by: A. F. Dudley <AFDudley@users.noreply.github.com>
2021-07-28 13:28:23 +05:30

41 lines
1.2 KiB
YAML

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
run: |
echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7})
echo ::set-output name=repo::$(echo ${{ github.repository }})
- name: Run docker build
run: docker build -t ${{steps.vars.outputs.repo}} .
- name: Tag docker image
run: docker tag ${{steps.vars.outputs.repo}} ghcr.io/${{steps.vars.outputs.repo}}:${{steps.vars.outputs.sha}}
- name: Docker Login
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u vulcanize --password-stdin
- name: Docker Push
run: docker push ghcr.io/${{steps.vars.outputs.repo}}:${{steps.vars.outputs.sha}}