Skip to content

Commit

Permalink
Added CD workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TawreCZ committed Feb 3, 2025
1 parent 3a98a7f commit de750ad
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: cd

on:
push:
branches: [main]

jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest


steps:
- name: Check out code
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23.0"

- name: Build App
run: ./scripts/buildprod.sh

0 comments on commit de750ad

Please sign in to comment.