Fixed typo and added dates back to devbuild workflow

This commit is contained in:
Marcel Baumgartner
2024-06-30 02:32:57 +02:00
parent 4e1f1629a1
commit 20b67eafe1
2 changed files with 6 additions and 3 deletions

View File

@@ -11,6 +11,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
@@ -27,6 +30,6 @@ jobs:
platforms: linux/amd64,linux/arm64
build-args: |
"BUILD_CHANNEL=${{ github.ref_name }}"
"BUILD_COMMIT_HASH=${{ github.sha }}
"BUILD_NAME=devbuild"
"BUILD_COMMIT_HASH=${{ github.sha }}"
"BUILD_NAME=devbuild ${{ steps.date.outputs.date }}"
"BUILD_VERSION=unknown"