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 dbb5258 commit c4977d2Copy full SHA for c4977d2
.github/workflows/docker.yml
@@ -67,6 +67,8 @@ jobs:
67
id: crossfire_version
68
run: |
69
VERSION=$(docker run --rm basictheprogram/crossfire-server:latest dpkg-query -W -f='${Version}\n' crossfire-server)
70
+ echo "Crossfire server version: $VERSION"
71
+ echo "CROSSFIRE_VERSION=$VERSION" >> $GITHUB_ENV
72
echo "CROSSFIRE_VERSION=$VERSION" >> $GITHUB_OUTPUT
73
74
- name: Build and Push
@@ -78,7 +80,7 @@ jobs:
78
80
tags: |
79
81
basictheprogram/crossfire-server:latest
82
basictheprogram/crossfire-server:${{ github.sha }}
- basictheprogram/crossfire-server:${{ steps.crossfire.outputs.CROSSFIRE_VERSION }}
83
+ basictheprogram/crossfire-server:${{ steps.crossfire_version.outputs.CROSSFIRE_VERSION }}
84
cache-from: type=gha
85
cache-to: type=gha,mode=max
86
0 commit comments