We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c636efa commit 0e2ef4dCopy full SHA for 0e2ef4d
.github/workflows/DockerHub.yml
.github/workflows/Release.yml
@@ -28,4 +28,17 @@ jobs:
28
env:
29
GITHUB_TOKEN: "${{ secrets.TOMASNORRE_BOT_TOKEN }}"
30
with:
31
- tag_name: v2
+ tag_name: v2
32
+
33
+ # Make New Release to Docker Hub
34
+ - name: Checkout code
35
+ uses: actions/checkout@v2
36
37
+ - name: Docker Login
38
+ run: docker login --username=${{ secrets.DOCKER_HUB_USERNAME }} --password=${{ secrets.DOCKER_HUB_PASSWORD }}
39
40
+ - name: Docker Build
41
+ run: docker build -t tomasnorre/typo3teruploader:latest Docker/
42
43
+ - name: Docker Push
44
+ run: docker push tomasnorre/typo3teruploader:latest
0 commit comments