update #13
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: Build | |
on: | |
push: | |
branches: ["main"] | |
jobs: | |
build-dev: | |
name: Build and push dev Docker image | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set Tag in env variable | |
run: | | |
echo "sha_short=$(echo ${{ github.sha }} | cut -c1-7)" >> $GITHUB_ENV | |
echo "vatusa/${{ secrets.REPOSITORY_NAME }}" > APP_NAME | |
echo "$GITHUB_SHA" > TAG | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag $(cat APP_NAME):dev-${{ github.sha }} | |
- name: Tag the image to commit | |
run: docker tag $(cat APP_NAME):dev-${{ github.sha }} $(cat APP_NAME):dev-${{ github.sha }} | |
- name: Docker Login | |
run: docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_PASS }} | |
- name: Image push | |
run: docker push $(cat APP_NAME):dev-${{ github.sha }} | |
build: | |
name: Build and push Docker image | |
runs-on: ubuntu-latest | |
needs: build-dev | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set Tag in env variable | |
run: | | |
echo "sha_short=$(echo ${{ github.sha }} | cut -c1-7)" >> $GITHUB_ENV | |
echo "vatusa/${{ secrets.REPOSITORY_NAME }}" > APP_NAME | |
echo "$GITHUB_SHA" > TAG | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag $(cat APP_NAME):${{ github.sha }} | |
- name: Tag the image to commit | |
run: docker tag $(cat APP_NAME):${{ github.sha }} $(cat APP_NAME):${{ github.sha }} | |
- name: Docker Login | |
run: docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_PASS }} | |
- name: Image push | |
run: docker push $(cat APP_NAME):${{ github.sha }} | |
deploy-dev: | |
name: Deploy dev to ArgoCD | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
with: | |
repository: 'VATUSA/gitops' | |
path: gitops | |
token: ${{ secrets.G_TOKEN }} | |
- name: Setup Kustomize | |
uses: imranismail/setup-kustomize@v2 | |
- name: Update manifests | |
run: | | |
cd $GITHUB_WORKSPACE/gitops/overlays/dev | |
kustomize edit set image vatusa/${{ secrets.REPOSITORY_NAME }}=vatusa/${{ secrets.REPOSITORY_NAME }}:${{ github.sha }} | |
- name: Commit and push changes | |
run: | | |
cd $GITHUB_WORKSPACE/gitops | |
git config --global user.email "[email protected]" | |
git config --global user.name "VATUSA6" | |
echo ${{ github.sha }} | |
git add . | |
git commit -m "Update myvatusa image tag to ${{ github.sha }}" | |
- name: Push to gitops repo | |
run: | | |
cd $GITHUB_WORKSPACE/gitops | |
git push origin main |