From 7e337e949c9e757279e3c83214252a6db87545f0 Mon Sep 17 00:00:00 2001 From: Nischal Shakya Date: Tue, 7 May 2024 17:00:43 +0545 Subject: [PATCH] Add build and deploy-dev job --- .github/workflows/build.yml | 53 +++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..0a1df77 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,53 @@ +name: CI + +on: + push: + branches: + - main + - dev + +jobs: + build: + name: Build Golang project + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Setup Golang 1.21 + uses: actions/setup-go@v5 + with: + go-version: '>=1.21.6' + + - name: Build project + run: go build ./cmd/web + + - name: Upload Artifact + uses: actions/upload-artifact@v4 + with: + name: web.zip + path: ./ + + deploy-dev: + needs: [build] + if: ${{ github.ref == 'refs/heads/dev' }} + + runs-on: ubuntu-latest + environment: + name: dev + url: https://github.com/${{ github.repository }}/releases/tag/v${{ vars.DEV_VERSION }} + + steps: + - name: Download candidate artifacts + uses: actions/download-artifact@v4 + with: + name: web.zip + + - name: Release to dev + uses: softprops/action-gh-release@v2 + with: + tag_name: v${{ vars.DEV_VERSION }} + prerelease: true + draft: true + name: dev + files: web