From d6183adcfd5930d7b79bdb6b916aff64c3c5d100 Mon Sep 17 00:00:00 2001 From: Camille Frantz Date: Mon, 28 Oct 2024 18:00:54 -0500 Subject: [PATCH] actions babee ... maybe --- .gitea/workflows/build.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..dbfc4f5 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,17 @@ +name: build with hugo and deploy +run-name: ${{ github.actor }} is learning how to build and deploy +on: [push] +jobs: + check-bats-version: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: apt install hugo + - run: hugo + - uses: garygrossgarten/github-action-scp@release + with: + local: public/ + remote: ${{ secrets.DEST }} + host: ${{ secrets.HOST }} + username: ${{ secrets.USER }} + password: ${{ secrets.PASS }}