fix README title and status badge (image) #10
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: ci | |
'on': | |
push: | |
branches: | |
- '**' | |
permissions: | |
contents: write | |
jobs: | |
ci: | |
runs-on: [self-hosted, dev] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Extras / Count Lines of Source Code | |
run: make extras/cloc | |
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
# Lint | |
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
- name: Lint | |
run: make format | |
- name: Check | |
run: git diff HEAD --quiet | |
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
# Build [Prod] (and Upload binary) | |
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
- name: Check release version | |
id: check-release-version | |
if: github.ref == 'refs/heads/master' | |
env: | |
GH_TOKEN: ${{ github.token }} | |
run: | | |
RELEASE_TAG=$(make deploy/get-current-db-version) | |
# Test that github-cli is working | |
gh --version | |
gh release list -L 1 | |
# TODO: enhance this to be: if release_tag > current_prod_tag, deploy. | |
# Otherwise, can skip this step entirely? | |
gh release view $RELEASE_TAG || echo "PUBLISH=1" >> "$GITHUB_OUTPUT" | |
# yamllint disable rule:line-length | |
- name: Build (production release) | |
if: github.ref == 'refs/heads/master' && steps.check-release-version.outputs.PUBLISH | |
env: | |
GH_TOKEN: ${{ github.token }} | |
run: set -o pipefail; make build | |
- name: Upload artifacts (production release) | |
if: github.ref == 'refs/heads/master' && steps.check-release-version.outputs.PUBLISH | |
env: | |
GH_TOKEN: ${{ github.token }} | |
run: set -o pipefail; make deploy/upload |