-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8021ca8
commit b90df32
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: apache-proxy | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Log in to Docker Hub | ||
run: echo "${{ secrets.DOCKER_API_TOKEN }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin | ||
|
||
- name: Set environment variables | ||
run: echo "APACHE_OIDC_REPO=somrit/apache-oidc" >> $GITHUB_ENV | ||
|
||
- name: Build Docker image | ||
run: | | ||
docker build -f apache-oidc/Dockerfile -t ${{ env.APACHE_OIDC_REPO }}:github-build-${{ github.run_number }} -t ${{ env.APACHE_OIDC_REPO }}:latest . | ||
- name: Push Docker image (github-build tag) | ||
run: docker push ${{ env.APACHE_OIDC_REPO }}:github-build-${{ github.run_number }} | ||
|
||
- name: Push Docker image (latest tag) | ||
run: docker push ${{ env.APACHE_OIDC_REPO }}:latest |