Use tar as output for docker to avoid unsupported file paths

pull/1032/head
Tyrrrz 1 year ago
parent e261edde8b
commit d7537425f8

@ -18,14 +18,14 @@ jobs:
docker buildx build docker buildx build
--file DiscordChatExporter.Cli.dockerfile --file DiscordChatExporter.Cli.dockerfile
--platform linux/amd64,linux/arm64 --platform linux/amd64,linux/arm64
--output docker/ --output type=tar,dest=DiscordChatExporter.Cli.Docker.tar
. .
- name: Upload artifacts - name: Upload artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: DiscordChatExporter.Cli.Docker name: DiscordChatExporter.Cli.Docker
path: docker/ path: DiscordChatExporter.Cli.Docker.tar
deploy-latest: deploy-latest:
if: ${{ github.event_name == 'push' && github.ref_type == 'branch' && github.ref_name == 'master' }} if: ${{ github.event_name == 'push' && github.ref_type == 'branch' && github.ref_name == 'master' }}

Loading…
Cancel
Save