We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ccb847 commit 9c78753Copy full SHA for 9c78753
1 file changed
.github/workflows/build.yml
@@ -28,7 +28,11 @@ jobs:
28
with:
29
username: germey
30
password: ${{ secrets.DOCKERHUB_LOGIN_PASSWORD }}
31
-
+
32
+ - name: Get current date
33
+ id: date
34
+ run: echo "::set-output name=date::$(date +'%Y%m%d')"
35
36
- name: Build and push
37
uses: docker/build-push-action@v2
38
@@ -38,3 +42,4 @@ jobs:
42
tags: |
39
43
germey/proxypool:latest
40
44
germey/proxypool:master
45
+ germey/proxypool:${{ steps.date.outputs.date }}
0 commit comments