Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement NAT hole punching and make API server configurable #298

Merged
merged 10 commits into from
Jan 27, 2023
Prev Previous commit
Next Next commit
Add missing env variable
  • Loading branch information
kaenganxt authored Dec 27, 2022
commit 89040d0a1a5174cc4c56d2008012ce76ca32f88d
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,13 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2


- name: Set lower case owner name
run: |
echo "OWNER_LC=${OWNER,,}" >>${GITHUB_ENV}
env:
OWNER: '${{ github.repository_owner }}'

- name: Build Docker Image
working-directory: src/gs
run: docker build -t ghcr.io/${{ env.OWNER_LC }}/apiserver:latest -t .
Expand Down