From 143395de1553119f5d1fc5568f74ce961f97e067 Mon Sep 17 00:00:00 2001 From: Minhyeok Park Date: Tue, 15 Oct 2024 14:05:28 +0900 Subject: [PATCH] feat: add testing gitea workflow --- .gitea/workflows/deploy_site.yml | 13 +++++++++++++ index.html | 1 + 2 files changed, 14 insertions(+) create mode 100644 .gitea/workflows/deploy_site.yml create mode 100644 index.html diff --git a/.gitea/workflows/deploy_site.yml b/.gitea/workflows/deploy_site.yml new file mode 100644 index 0000000..8472232 --- /dev/null +++ b/.gitea/workflows/deploy_site.yml @@ -0,0 +1,13 @@ +on: + push: + workflow_dispatch: + +jobs: + deploy_site: + runs-on: ubuntu-latest + steps: + - run: wget https://dl.min.io/client/mc/release/linux-arm64/mc -o /tmp/mc + - run: chmod +x /tmp/mc + - run: mc alias set minio https://minio.pmh.codes ${{ secrets.MINIO_ACCESS_KEY }} ${{ secrets.MINIO_SECRET_KEY }} + - run: mc cp -r . minio/ptools + diff --git a/index.html b/index.html new file mode 100644 index 0000000..45b983b --- /dev/null +++ b/index.html @@ -0,0 +1 @@ +hi