Don't quote env variables in workflow

pull/2/head
Robert Adam 2022-05-07 16:09:50 +02:00
rodzic e3fad167b8
commit b83724d7f7
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -21,11 +21,11 @@ jobs:
- name: Set mumble-version if manual trigger
if: "${{ github.event.inputs.mumble-version != '' }}"
run: echo "MUMBLE_VERSION=\"${{ github.event.inputs.mumble-version }}\"" >> $GITHUB_ENV
run: echo "MUMBLE_VERSION=${{ github.event.inputs.mumble-version }}" >> $GITHUB_ENV
- name: Set docker-version if manual trigger
if: "${{ github.event.inputs.docker-version != '' }}"
run: echo "DOCKER_VERSION=\"${{ github.event.inputs.docker-version }}\"" >> $GITHUB_ENV
run: echo "DOCKER_VERSION=${{ github.event.inputs.docker-version }}" >> $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@v2