diff --git a/.github/workflows/development-build.yml b/.github/workflows/development-build.yml index 5670ad92..002b1c63 100644 --- a/.github/workflows/development-build.yml +++ b/.github/workflows/development-build.yml @@ -11,9 +11,6 @@ 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 @@ -29,7 +26,7 @@ jobs: tags: moonlightpanel/moonlight:dev platforms: linux/amd64,linux/arm64 build-args: | - "BUILD_CHANNEL=${{github.ref_name}}" - "BUILD_COMMIT_HASH=${{github.sha}} - "BUILD_NAME=devbuild ${{steps.date.outputs.date}}" + "BUILD_CHANNEL=${{ github.ref_name }}" + "BUILD_COMMIT_HASH=${{ github.sha }} + "BUILD_NAME=devbuild" "BUILD_VERSION=unknown" diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index 027b5c4e..51e24f49 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -29,7 +29,7 @@ jobs: tags: moonlightpanel/moonlight:latest platforms: linux/amd64,linux/arm64 build-args: | - "BUILD_CHANNEL=${{github.ref_name}}" - "BUILD_COMMIT_HASH=${{github.sha}} - "BUILD_NAME=${{github.event.inputs.codeName}}" - "BUILD_VERSION=${{github.event.inputs.versionName}}" \ No newline at end of file + "BUILD_CHANNEL=${{ github.ref_name }}" + "BUILD_COMMIT_HASH=${{ github.sha }} + "BUILD_NAME=${{ github.event.inputs.codeName }}" + "BUILD_VERSION=${{ github.event.inputs.versionName }}" \ No newline at end of file