Skip to content

Commit

Permalink
added github actions workflow (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
kcs-bandihareesh authored Sep 17, 2024
1 parent 8021ca8 commit b90df32
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/apache-proxy.yaml
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

0 comments on commit b90df32

Please sign in to comment.