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 3ff453b commit c22d9a2Copy full SHA for c22d9a2
.github/scripts/release/build-and-test.sh
@@ -5,7 +5,7 @@
5
set -e
6
7
echo "🔨 Building Docker image..."
8
-docker build -t test-action:${{ steps.setup.outputs.version }} .
+docker build -t test-action:$VERSION .
9
10
echo "🧪 Running basic tests..."
11
# Quick validation test
@@ -15,6 +15,6 @@ docker run --rm \
15
-e INPUT_ARGS="echo 'Test successful'" \
16
-e INPUT_DRY_RUN=true \
17
-e INPUT_DEBUG=true \
18
- test-action:${{ steps.setup.outputs.version }}
+ test-action:$VERSION
19
20
echo "✅ Build and test completed successfully"
.github/workflows/release.yaml
@@ -39,6 +39,8 @@ jobs:
39
40
- name: Build
41
run: .github/scripts/release/build-and-test.sh
42
+ env:
43
+ VERSION: ${{ steps.setup.outputs.version }}
44
45
- name: Changelog
46
id: changelog
0 commit comments