-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from nomandhoni-cs/main
Bumped version and changed the CI CD workflow
- Loading branch information
Showing
2 changed files
with
14 additions
and
19 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,21 @@ | ||
name: Bump version | ||
name: MasterDeployCI | ||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
push: | ||
branches: | ||
- production | ||
|
||
jobs: | ||
build: | ||
if: github.event.pull_request.merged == true | ||
runs-on: ubuntu-22.04 | ||
permissions: | ||
contents: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.merge_commit_sha }} | ||
fetch-depth: '0' | ||
|
||
- uses: actions/checkout@v1 | ||
- name: Create Release Folder | ||
run: rsync -arv --exclude='.git/' --exclude='.github/' --exclude='.gitignore' . ./release | ||
- name: Switch to Release Folder | ||
run: | | ||
cd release | ||
ls -la | ||
- name: Bump version and push tag | ||
uses: anothrNick/github-tag-action@1.64.0 # Don't use @master or @v1 unless you're happy to test the latest version | ||
uses: anothrNick/github-tag-action@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN }} # if you don't want to set write permissions use a PAT token | ||
WITH_V: true | ||
PRERELEASE: true | ||
GITHUB_TOKEN: ${{ secrets.TOKEN }} | ||
REPO_OWNER: nomandhoni-cs |
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