perf: 完善网关连接 aws redis 的问题 #314
Workflow file for this run
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: "Run Build Test" | |
on: | |
push: | |
branches: | |
- pr@* | |
- repr@* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: docker/setup-qemu-action@v2 | |
- uses: docker/setup-buildx-action@v2 | |
- uses: docker/build-push-action@v3 | |
with: | |
context: . | |
push: false | |
tags: jumpserver/koko:test | |
build-args: | | |
GOPROXY=direct | |
APT_MIRROR=http://deb.debian.org | |
file: Dockerfile | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- uses: LouisBrunner/[email protected] | |
if: always() | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
name: Check Build | |
conclusion: ${{ job.status }} |