diff options
| author | Santo Cariotti <santo@dcariotti.me> | 2025-04-22 07:47:15 +0000 |
|---|---|---|
| committer | Santo Cariotti <santo@dcariotti.me> | 2025-04-22 07:47:15 +0000 |
| commit | aa472842a579d8195f6ce2c04cf0bb1cf5d3e4d0 (patch) | |
| tree | c0fe2d18d3ea32e5dd71993a14c90f3b9c63a9f9 /.github/workflows/release.yml | |
| parent | d9dfabe75e4edb7fe2f32cb9a42113a529f52bf6 (diff) | |
ci: publish and release
Diffstat (limited to '.github/workflows/release.yml')
| -rw-r--r-- | .github/workflows/release.yml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..d4d8bb6 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,37 @@ +name: Create Release + +on: + push: + tags: + - '*' + +jobs: + release: + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version: '>=1.18' + + - name: Build Executables + run: make build-api build-ui + + - name: Create GitHub Release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref_name }} + release_name: Release ${{ github.ref_name }} + draft: false + prerelease: false + files: | + rahanna-api + rahanna-ui |
