We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 744a671 + dbd130e commit ea73decCopy full SHA for ea73dec
.github/workflows/docker-canary.yml
.github/workflows/docker-hub.yml
@@ -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