Skip to content

Commit

Permalink
Merge pull request #60 from phillc/releases
Browse files Browse the repository at this point in the history
Move docker release publishing to github actions
  • Loading branch information
phillc authored Mar 12, 2020
2 parents 744a671 + dbd130e commit ea73dec
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 19 deletions.
19 changes: 0 additions & 19 deletions .github/workflows/docker-canary.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/docker-hub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Publish Docker Release
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Publish latest to Registry
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: linode/linode-cloud-controller-manager
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tags: "latest,${{ GITHUB_REF }}"

0 comments on commit ea73dec

Please sign in to comment.