Skip to content

Commit ea73dec

Browse files
authored
Merge pull request #60 from phillc/releases
Move docker release publishing to github actions
2 parents 744a671 + dbd130e commit ea73dec

File tree

2 files changed

+16
-19
lines changed

2 files changed

+16
-19
lines changed

.github/workflows/docker-canary.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/workflows/docker-hub.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Publish Docker Release
2+
on:
3+
release:
4+
types: [published]
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@master
10+
- name: Publish latest to Registry
11+
uses: elgohr/Publish-Docker-Github-Action@master
12+
with:
13+
name: linode/linode-cloud-controller-manager
14+
username: ${{ secrets.DOCKER_USERNAME }}
15+
password: ${{ secrets.DOCKER_PASSWORD }}
16+
tags: "latest,${{ GITHUB_REF }}"

0 commit comments

Comments
 (0)