feature: categorize data (#36) #39
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: CD_Backend | |
permissions: | |
contents: write | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
version-and-release: | |
runs-on: ubuntu-latest | |
outputs: | |
backimage_version: ${{ steps.tag_version.outputs.new_tag }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Bump version and push tag | |
id: tag_version | |
uses: mathieudutour/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: login to docker registry | |
uses: docker/login-action@v3 | |
with: | |
username: ${{secrets.DOCKERHUB_USERNAME}} | |
password: ${{secrets.DOCKERHUB_TOKEN}} | |
- name: build and push docker backend to registry | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: backend.Dockerfile | |
push: true | |
tags: mohammadsadeghmontazeri/starback:${{ steps.tag_version.outputs.new_tag }} | |
- name: build and push docker migrate to registry | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: migrate.Dockerfile | |
push: true | |
tags: mohammadsadeghmontazeri/migratestar:${{ steps.tag_version.outputs.new_tag }} | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ steps.tag_version.outputs.new_tag }} | |
release_name: Release ${{ steps.tag_version.outputs.new_tag }} | |
body: | | |
steps.tag_version.outputs.changelog | |
draft: false | |
prerelease: false | |
helm-update: | |
runs-on: ubuntu-latest | |
needs: [version-and-release] | |
steps: | |
- name: Clone Deployment Repository | |
uses: GuillaumeFalourd/[email protected] | |
with: | |
depth: 1 | |
branch: 'main' | |
owner: 'Star-Academy' | |
repository: 'Summer1403-Project-Group01-Deployment' | |
- name: Update Angular Image Tag in Helm Chart | |
run: | | |
cd Summer1403-Project-Group01-Deployment/mychart | |
sed -i 's|image: mohammadsadeghmontazeri/starback:.*|image: mohammadsadeghmontazeri/starback:${{ needs.version-and-release.outputs.backimage_version }}|' values.yaml | |
sed -i 's|image: mohammadsadeghmontazeri/migratestar:.*|image: mohammadsadeghmontazeri/migratestar:${{ needs.version-and-release.outputs.backimage_version }}|' values.yaml | |
git config --global user.email "[email protected]" | |
git config --global user.name "msm1984" | |
git commit -am "Update webapp and migration image tag to ${{ needs.version-and-release.outputs.backimage_version }}" | |
- name: Push to Deployment Repository | |
run: | | |
cd Summer1403-Project-Group01-Deployment | |
git remote set-url origin https://x-access-token:${{ secrets.MYPAT }}@github.com/Star-Academy/Summer1403-Project-Group01-Deployment.git | |
git push |