Skip to content
This repository has been archived by the owner on May 22, 2023. It is now read-only.

Commit

Permalink
Merge pull request #7 from josh/gpr
Browse files Browse the repository at this point in the history
Actions to package registry
  • Loading branch information
josh committed Nov 9, 2019
2 parents 41dcbcb + 5f50a97 commit 37157dc
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 16 deletions.
16 changes: 0 additions & 16 deletions .github/workflows/ci.yml

This file was deleted.

58 changes: 58 additions & 0 deletions .github/workflows/docker.yml
@@ -0,0 +1,58 @@
name: Docker

on:
push:
branches:
- master
tags:
- v*
pull_request:

env:
IMAGE_NAME: tickerd

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

- name: Run tests
run: |
docker-compose --file docker-compose.test.yml build
docker-compose --file docker-compose.test.yml run sut
push:
needs: test

runs-on: ubuntu-latest
if: github.event_name == 'push'

steps:
- uses: actions/checkout@v1

- name: Build image
run: docker build . --file Dockerfile --tag image

- name: Log into registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin

- name: Push image
run: |
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/$IMAGE_NAME
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention
[ "$VERSION" == "master" ] && VERSION=latest
echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION
docker tag image $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION

0 comments on commit 37157dc

Please sign in to comment.