Skip to content

Commit

Permalink
5.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
JesusHdez960717 committed Jul 24, 2024
1 parent 29928a9 commit 18f07d8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/build-and-publish_library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ permissions:
jobs:
build:
runs-on: ubuntu-latest
if: |
github.base_ref == 'master'
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -57,9 +55,6 @@ jobs:
publish:
needs: build
runs-on: ubuntu-latest
if: |
github.base_ref == 'master'
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -112,13 +107,11 @@ jobs:
ENVIRONMENT: ${{ steps.determine_version.outputs.env }}

- name: Create and push tag(for master)
if: github.base_ref == 'master'
run: |
git tag v${{ steps.determine_version.outputs.version }}
git push origin v${{ steps.determine_version.outputs.version }}
- name: Create Release(for master)
if: github.base_ref == 'master'
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -135,8 +128,6 @@ jobs:
cleanup-packages:
needs: publish
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true && (github.base_ref == 'master' || github.base_ref == 'develop')

steps:
- name: Delete old packages
env:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* 5.1.8:
* **PACKAGE** :sparkler: : Fix build workflow

* 5.1.7:
* **PACKAGE** :sparkler: : Fix build workflow

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'dev.root101.commons'
version = '5.1.7'
version = '5.1.8'

def environment = System.getenv('ENVIRONMENT') ?: 'prod'

Expand Down

0 comments on commit 18f07d8

Please sign in to comment.