fix process.py #6
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=v$(python3 sql/latest_version.py) | |
echo RELEASE_TAG=$RELEASE_TAG | |
test -n "$RELEASE_TAG" | |
# 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 | |
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 |