From 4e8d98aa1345e47fac4d5a4b247d553c18bb6002 Mon Sep 17 00:00:00 2001 From: Jan <45685070+LeRoid-hub@users.noreply.github.com> Date: Fri, 20 Sep 2024 17:32:16 +0200 Subject: [PATCH] Create gotestnbuild.yml --- .github/workflows/gotestnbuild.yml | 51 ++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/gotestnbuild.yml diff --git a/.github/workflows/gotestnbuild.yml b/.github/workflows/gotestnbuild.yml new file mode 100644 index 0000000..017e89b --- /dev/null +++ b/.github/workflows/gotestnbuild.yml @@ -0,0 +1,51 @@ +name: Go Tests & Build + +on: + push: + branches: [ "main" ] + +env: + # Use docker.io for Docker Hub if empty + REGISTRY: ghcr.io + IMAGE_NAME: leroid-hub/mensa-api:latest + PAT: ${{ secrets.PAT }} + +jobs: + + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.23' + + - name: Build + run: go build -v ./... + - name: Actions Ntfy + run: | + curl \ + -u ${{ secrets.NTFY_CRED }} \ + -H "Title: Github barfuss.email" \ + -H "Content-Type: text/plain" \ + -d $'Repo: ${{ github.repository }}\nCommit: ${{ github.sha }} - ${{ github.event.head_commit.message }}\nRef: ${{ github.ref }}\nStatus: ${{ job.status}}' \ + ${{ secrets.NTFY_URL }} + +# - name: Test +# run: go test -v ./... + + build: + needs: test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Login + run: | + echo ${{ env.PAT }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin + - name: Build and Publish + run: | + docker build . --tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + docker push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}