mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-06-01 23:38:24 -04:00
Use tar as output for docker to avoid unsupported file paths
This commit is contained in:
parent
e261edde8b
commit
d7537425f8
1 changed files with 2 additions and 2 deletions
4
.github/workflows/docker.yml
vendored
4
.github/workflows/docker.yml
vendored
|
@ -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…
Add table
Add a link
Reference in a new issue