fix(generate deps file): Deps file bug fix (#60) #40
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: CI-Merge | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: '0' | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ vars.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASS }} | |
- name: Build the Docker image | |
id: build_image | |
run: | | |
docker build -t ${{ vars.DOCKERHUB_USERNAME }}/negar-backend:latest . | |
- name: Bump version and push tag | |
id: tag_version | |
uses: mathieudutour/github-tag-action@v6.2 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push the Docker image | |
run: | | |
docker push ${{ vars.DOCKERHUB_USERNAME }}/negar-backend:latest | |
docker tag ${{ vars.DOCKERHUB_USERNAME }}/negar-backend:latest ${{ vars.DOCKERHUB_USERNAME }}/negar-backend:${{ steps.tag_version.outputs.new_tag }} | |
docker push ${{ vars.DOCKERHUB_USERNAME }}/negar-backend:${{ steps.tag_version.outputs.new_tag }} | |
- name: Install yq | |
run: | | |
sudo apt-get update | |
sudo snap install yq | |
- name: Clone Deployment Repository | |
uses: GuillaumeFalourd/clone-github-repo-action@v2.3 | |
with: | |
depth: 1 | |
branch: 'main' | |
owner: 'Star-Academy' | |
repository: 'Summer1403-Project-Group04-Deployment' | |
- name: Update values.yaml for backend | |
run: | | |
echo "Updating values.yaml for backend..." | |
cd Summer1403-Project-Group04-Deployment | |
yq eval ".backend.tag = \"${{ steps.tag_version.outputs.new_tag }}\"" -i values.yaml | |
git config --local user.email "m.h.chah4@gmail.com" | |
git config --local user.name "muhuchah" | |
git add values.yaml | |
git commit -m "Update backend tag to ${{ steps.tag_version.outputs.new_tag }}" | |
- name: Push changes | |
run: | | |
cd Summer1403-Project-Group04-Deployment | |
git remote set-url origin https://x-access-token:${{ secrets.PAT }}@github.com/Star-Academy/Summer1403-Project-Group04-Deployment.git | |
git push origin main |