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 e7deac0 commit a73e005Copy full SHA for a73e005
.github/workflows/ci-tag.yml
@@ -7,11 +7,6 @@
7
8
name: ci-tag
9
10
-env:
11
- DOTNET_VERSION: 9.0.x
12
- REGISTRY: ghcr.io
13
- IMAGE_NAME: ${{ github.repository_owner }}/api
14
-
15
jobs:
16
17
# Pre-job to find the latest tag
@@ -27,9 +22,11 @@ jobs:
27
22
repository: ${{ github.repository }}
28
23
regex: '^\d+\.\d+\.\d+(-[0-9A-Za-z]+(\.\d+)*)?$'
29
24
releases-only: false
25
+ - name: Set output
26
+ run: echo "latest-tag=${{ steps.latest-tag.outputs.tag }}"
30
31
# Delegate building and containerizing to a single workflow.
32
- build-and-containerize:
+ build:
33
needs: get-latest-tag
34
uses: ./.github/workflows/ci-build.yml
35
with:
0 commit comments