Add the landing page for KitOps (#49) #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nightly builds | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
nightly-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
version: latest | |
distribution: goreleaser | |
args: release --snapshot --skip=publish | |
- name: Update Nightly Release | |
uses: andelf/nightly-release@46e2d5f80828ecc5c2c3c819eb31186a7cf2156c | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: next | |
name: 'Nightly Builds Download for KitOps CLI (kit)' | |
prerelease: true | |
body: | | |
Welcome to the cutting edge! Our nightly builds offer the most recent developments | |
in kit CLI, providing early access to new features, enhancements, and | |
fixes that are on their way to the next stable release' | |
files: | | |
./dist/*.txt | |
./dist/*.zip | |
./dist/*.tar.gz |