diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml new file mode 100644 index 0000000..70bca14 --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,21 @@ +name: work.suroh.tk deploy +run-name: ${{ github.action_repository }} is being built and deployed +on: + push: + branches: + - 'main' +jobs: + build-deploy: + runs-on: ubuntu-latest + steps: + - name: Clone code to runner + uses: actions/checkout@v4 + + - name: Move to directory + run: cd ${{ github.workspace }} + + - name: Building dependencies + run: npm ci + + - name: Check deployment directory + run: ls -lh /var/www/ diff --git a/README.md b/README.md index 7fb9f19..8669ef1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # work.suroh.tk -Repository of my homepage. Built on 11ty using webc. +Repository of my homepage.