-
Notifications
You must be signed in to change notification settings - Fork 2
60 lines (51 loc) · 1.64 KB
/
CD_Backend.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: CD_Backend
permissions:
contents: write
on:
push:
branches:
- dev
jobs:
version-and-release:
runs-on: ubuntu-latest
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