We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd7189b commit 576023eCopy full SHA for 576023e
1 file changed
.github/workflows/release.yml
@@ -16,19 +16,22 @@ jobs:
16
actions: write
17
contents: write
18
19
+ env:
20
+ TAG: ${{ github.ref_name }}
21
+
22
steps:
23
- uses: actions/checkout@v4
24
25
- name: "Build"
26
run: |
- docker build -t bruttazz/apod-api:$tag .
27
+ docker build -t bruttazz/apod-api:$TAG .
28
working-directory: "."
29
30
- name: "Publish"
31
id: publish
32
33
docker login -u bruttazz -p "${{ secrets.DOCKER_HUB_TOKEN }}"
- docker push bruttazz/apod-api:$tag
34
+ docker push bruttazz/apod-api:$TAG
35
36
37
- name: Create Release
0 commit comments