Skip to content

Commit

Permalink
build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
sturrent authored Dec 2, 2019
1 parent 8767af2 commit ea2f0f7
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI

on:
release:
types: [published]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Create new binary using script
run: |
rm -f l200labs_binaries/*
bash shc_script_converter.sh
- name: Login to DockerHub Registry
run: echo $ | docker login -u $ --password-stdin
- name: Get the version
id: vars
run: echo ::set-output name=tag::$(echo ${GITHUB_REF:10})
- name: Build the tagged Docker image
run: docker build . --file Dockerfile --tag sturrent/l200labs:$
- name: Push the tagged Docker image
run: docker push sturrent/l200labs:$
- name: Build the latest Docker image
run: docker build . --file Dockerfile --tag sturrent/l200labs:latest
- name: Push the latest Docker image
run: docker push sturrent/l200labs:latest

0 comments on commit ea2f0f7

Please sign in to comment.