1
0
Fork 0
forked from swablab/website

feat: wget

This commit is contained in:
ndsboy 2025-04-12 18:56:54 +00:00
parent c73b5a8dbf
commit 1aac82b79d

View file

@ -17,12 +17,12 @@ jobs:
name: deploy
runs-on: docker
container:
image: docker:dind
image: docker:cli
env:
DOCKER_HOST: tcp://host.docker.internal:2375
steps:
- name: download
run: curl https://${{ env.url }}/archive/main.tar.gz | tar -xz
run: wget -O- https://${{ env.url }}/archive/main.tar.gz | tar -xz
- name: build
run: docker buildx -f ${{ env.repo }}/Containerfile -t ${{ env.url }}:latest ${{ env.repo }}