Deploy assets from CI
Some checks failed
Build / build (push) Failing after 37s

This commit is contained in:
Frederik Ring 2023-09-02 20:55:43 +02:00
parent e9d30f58ff
commit 80a3fa1f24
2 changed files with 15 additions and 1 deletions

View File

@ -15,3 +15,17 @@ jobs:
- name: Build
run: |
make build
- name: Install MinIO client
run: |
download=$(https://dl.min.io/client/mc/release/linux-$(uname -i | sed 's/x86_64/amd64/')/mc)
echo $download
curl -sSL $download -o mc
chmod +x mc
mv mc /usr/local/bin/mc
command -v mc
- name: Configure MinIO client
run: |
mc alias set offen https://storage.offen.dev offen ${{ secrets.MINIO_SECRET_KEY }}
- name: Deploy
run: |
mc mirror --remove --overwrite ./output/ offen/software-website

View File

@ -32,4 +32,4 @@ build:
@docker create --entrypoint=bash --name assets offen/software-builder-website
@docker cp assets:/code/website/output/. ./output/
@docker rm assets
@docker rmi offen/software-builder-website
@docker rmi offen/software-builder-website:latest