chore: trigger ci

This commit is contained in:
pit
2023-09-27 12:08:22 +01:00
parent 0d91e61a50
commit 5f27eb20fd

View File

@@ -6,7 +6,10 @@ runs:
steps:
- name: Download Docker-Compose plugin
shell: bash
run: curl -SL https://github.com/docker/compose/releases/download/v2.16.0/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose
run: |
mkdir -p ${{ runner.temp }}/bin
curl -SL https://github.com/docker/compose/releases/download/v2.16.0/docker-compose-linux-x86_64 -o ${{ runner.temp }}/bin/docker-compose
echo "${{ runner.temp }}/bin" >> $GITHUB_PATH
- name: Make plugin executable
shell: bash
run: sudo chmod +x /usr/local/bin/docker-compose
run: chmod +x ${{ runner.temp }}/bin/docker-compose