commit 143395de1553119f5d1fc5568f74ce961f97e067 Author: Minhyeok Park Date: Tue Oct 15 14:05:28 2024 +0900 feat: add testing gitea workflow 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