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.
1 parent 20d3cff commit 1ae5bf0Copy full SHA for 1ae5bf0
.github/workflows/dockerimage.yml
@@ -0,0 +1,19 @@
1
+name: Publish Docker image
2
+on:
3
+ release:
4
+ types: [published]
5
+
6
+jobs:
7
+ push_to_registry:
8
+ name: Push Docker image to Docker Hub
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Check out the repo
12
+ uses: actions/checkout@v2
13
+ - name: Push to Docker Hub
14
+ uses: docker/build-push-action@v1
15
+ with:
16
+ username: ${{ secrets.DOCKER_USERNAME }}
17
+ password: ${{ secrets.DOCKER_PASSWORD }}
18
+ repository: evkalinin/gh-md-toc
19
+ tag_with_ref: true
0 commit comments