From 61b3ebb449ddc1a414e432e5aa66f8db7a894c3d Mon Sep 17 00:00:00 2001 From: antifallobst Date: Wed, 11 Oct 2023 23:12:37 +0200 Subject: [PATCH] ci: added a test deploy workflow --- .gitea/workflows/deploy.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitea/workflows/deploy.yml diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml new file mode 100644 index 0000000..5e43001 --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,25 @@ +name: Build and Deploy +on: + push: + branches: + - "master" + paths-ignore: + - "**.md" + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Build + uses: docker/build-push-action@v5 + with: + context: . + load: true + tags: nerdcult_frontend:latest + - name: Inspect + run: | + docker image inspect nerdcult_frontend:latest \ No newline at end of file