♻️✨refactor | feature: add precommit hooks for black and ruff #78
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: Deploy | ||
on: | ||
push: | ||
pull_request: | ||
types: [closed] | ||
#concurrency: | ||
# group: '${{ github.ref }}' | ||
# cancel-in-progress: true | ||
jobs: | ||
build: | ||
name: build | ||
uses: './.github/workflows/build.yml' | ||
Check failure on line 15 in .github/workflows/deploy.yml GitHub Actions / DeployInvalid workflow file
|
||
if: github.event_name != 'pull_request' | ||
deploy_review: | ||
needs: | ||
- build | ||
runs-on: [self-hosted, deployment-runner] | ||
container: | ||
image: git.dbyte.xyz/distro/levant | ||
if: github.ref != 'refs/heads/main' && github.event_name == 'push' | ||
timeout-minutes: 60 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: | | ||
levant deploy \ | ||
-var git_sha="${GITHUB_SHA}" \ | ||
-var environment_slug="${GITHUB_REF_NAME}" \ | ||
-address "http://nomad.service.consul:4646" \ | ||
./.github/deploy/review.hcl | ||
stop_review: | ||
runs-on: [self-hosted, deployment-runner] | ||
container: | ||
image: multani/nomad | ||
if: github.event_name == 'pull_request' | ||
timeout-minutes: 60 | ||
steps: | ||
- run: echo "null" | ||
- run: nomad status -address=http://nomad.service.consul:4646 | ||
- run: nomad job stop -address=http://nomad.service.consul:4646 -purge blockbot-${GITHUB_HEAD_REF} | ||
deploy_prod: | ||
needs: | ||
- build | ||
runs-on: [self-hosted, deployment-runner] | ||
container: | ||
image: git.dbyte.xyz/distro/levant | ||
if: github.ref == 'refs/heads/main' && github.event_name == 'push' | ||
timeout-minutes: 60 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: | | ||
levant deploy \ | ||
-var git_sha="${GITHUB_SHA}" \ | ||
-address "http://nomad.service.consul:4646" \ | ||
./.github/deploy/production.hcl |