Browse Source

fix conditions

pull/782/head
Jason Dove 4 years ago
parent
commit
bdff5eba75
  1. 2
      .github/workflows/artifacts.yml
  2. 6
      .github/workflows/docker.yml

2
.github/workflows/artifacts.yml

@ -193,7 +193,7 @@ jobs:
run: dotnet restore -r "${{ matrix.target }}" run: dotnet restore -r "${{ matrix.target }}"
- uses: suisei-cn/actions-download-file@v1 - uses: suisei-cn/actions-download-file@v1
if: ${{ matrix.kind }} == "windows" if: ${{ matrix.kind == 'windows' }}
id: downloadffmpeg id: downloadffmpeg
name: Download ffmpeg name: Download ffmpeg
with: with:

6
.github/workflows/docker.yml

@ -51,7 +51,7 @@ jobs:
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v1 uses: docker/setup-qemu-action@v1
if: ${{ matrix.qemu }} == "true" if: ${{ matrix.qemu == 'true' }}
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1 uses: docker/setup-buildx-action@v1
@ -75,7 +75,7 @@ jobs:
tags: | tags: |
jasongdove/ersatztv:${{ inputs.base_version }}${{ matrix.suffix }} jasongdove/ersatztv:${{ inputs.base_version }}${{ matrix.suffix }}
jasongdove/ersatztv:${{ inputs.tag_version }}${{ matrix.suffix }} jasongdove/ersatztv:${{ inputs.tag_version }}${{ matrix.suffix }}
if: ${{ matrix.name }} != "arm64" if: ${{ matrix.name != 'arm64' }}
- name: Build and push - name: Build and push
uses: docker/build-push-action@v2 uses: docker/build-push-action@v2
@ -90,4 +90,4 @@ jobs:
tags: | tags: |
jasongdove/ersatztv:${{ inputs.base_version }}${{ matrix.suffix }} jasongdove/ersatztv:${{ inputs.base_version }}${{ matrix.suffix }}
jasongdove/ersatztv:${{ inputs.tag_version }}${{ matrix.suffix }} jasongdove/ersatztv:${{ inputs.tag_version }}${{ matrix.suffix }}
if: ${{ matrix.name }} == "arm64" if: ${{ matrix.name == 'arm64' }}

Loading…
Cancel
Save