diff --git a/.gitea/workflows/build-app-linux.yml b/.gitea/workflows/build-app-linux.yml index ce975eb..88376f9 100644 --- a/.gitea/workflows/build-app-linux.yml +++ b/.gitea/workflows/build-app-linux.yml @@ -16,7 +16,8 @@ jobs: RELEASE_TAG: "${{ inputs.tag }}" steps: - name: Show tag - run: echo "Building for tag: ${RELEASE_TAG}" + run: | + echo "Building for tag: ${RELEASE_TAG}" - uses: actions/checkout@v4 with: diff --git a/.gitea/workflows/build-app-macos.yml b/.gitea/workflows/build-app-macos.yml index 717925e..c5d2a25 100644 --- a/.gitea/workflows/build-app-macos.yml +++ b/.gitea/workflows/build-app-macos.yml @@ -16,7 +16,8 @@ jobs: RELEASE_TAG: "${{ inputs.tag }}" steps: - name: Show tag - run: echo "Building for tag: ${RELEASE_TAG}" + run: | + echo "Building for tag: ${RELEASE_TAG}" - uses: actions/checkout@v4 with: diff --git a/.gitea/workflows/build-sidecar-cloud.yml b/.gitea/workflows/build-sidecar-cloud.yml index 1015219..c6277a5 100644 --- a/.gitea/workflows/build-sidecar-cloud.yml +++ b/.gitea/workflows/build-sidecar-cloud.yml @@ -16,7 +16,8 @@ jobs: RELEASE_TAG: "${{ inputs.tag }}" steps: - name: Show tag - run: echo "Building cloud sidecar for tag ${RELEASE_TAG}" + run: | + echo "Building cloud sidecar for tag ${RELEASE_TAG}" - uses: actions/checkout@v4 with: @@ -164,7 +165,8 @@ jobs: RELEASE_TAG: "${{ inputs.tag }}" steps: - name: Show tag - run: echo "Building cloud sidecar for tag ${RELEASE_TAG}" + run: | + echo "Building cloud sidecar for tag ${RELEASE_TAG}" - uses: actions/checkout@v4 with: diff --git a/.gitea/workflows/build-sidecar-linux.yml b/.gitea/workflows/build-sidecar-linux.yml index 2853d99..2e48666 100644 --- a/.gitea/workflows/build-sidecar-linux.yml +++ b/.gitea/workflows/build-sidecar-linux.yml @@ -16,7 +16,8 @@ jobs: RELEASE_TAG: "${{ inputs.tag }}" steps: - name: Show tag - run: echo "Building for tag: ${RELEASE_TAG}" + run: | + echo "Building for tag: ${RELEASE_TAG}" - uses: actions/checkout@v4 with: diff --git a/.gitea/workflows/build-sidecar-macos.yml b/.gitea/workflows/build-sidecar-macos.yml index b3a7340..73e41b4 100644 --- a/.gitea/workflows/build-sidecar-macos.yml +++ b/.gitea/workflows/build-sidecar-macos.yml @@ -16,7 +16,8 @@ jobs: RELEASE_TAG: "${{ inputs.tag }}" steps: - name: Show tag - run: echo "Building for tag: ${RELEASE_TAG}" + run: | + echo "Building for tag: ${RELEASE_TAG}" - uses: actions/checkout@v4 with: