Skip to content

Commit

Permalink
fix(release): fix release script
Browse files Browse the repository at this point in the history
  • Loading branch information
stonebuzz committed Aug 31, 2023
1 parent e4ef7ea commit 3ea11e3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 196 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release-new-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ jobs:
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
add: "['CHANGELOG.md', 'package.json']" #only this files will be added
push: origin HEAD:develop
message: "ci(release): release new version ${{ env.tag_name }}"

Expand All @@ -90,7 +91,7 @@ jobs:
run: mv ${{ env.module_inventory }}/build/outputs/aar/${{ env.module_inventory }}-release.aar ${{ env.module_inventory }}/build/outputs/aar/${{ env.module_inventory }}-release-v${{ env.tag_name }}.aar

- name: "Rename ${{ env.module_inventory }} JAR"
run: mv $${{ env.module_inventory }}/build/libs/${{ env.module_inventory }}-sources.jar ${{ env.module_inventory }}/build/libs/${{ env.module_inventory }}-sources-v${{ env.tag_name }}.jar
run: mv ${{ env.module_inventory }}/build/libs/${{ env.module_inventory }}-sources.jar ${{ env.module_inventory }}/build/libs/${{ env.module_inventory }}-sources-v${{ env.tag_name }}.jar


- name: Create Release
Expand All @@ -103,5 +104,5 @@ jobs:
files: |
${{ env.module_java }}/build/outputs/apk/release/${{ env.module_java }}-v${{ env.tag_name }}.apk
${{ env.module_kotlin }}/build/outputs/apk/release/${{ env.module_kotlin }}-v${{ env.tag_name }}.apk
${{ env.module_inventory }}/build/outputs/aar/${{ env.module_inventory }}-release.aar
${{ env.module_inventory }}/build/libs/${{ env.module_inventory }}-sources.jar
${{ env.module_inventory }}/build/outputs/aar/${{ env.module_inventory }}-release-v${{ env.tag_name }}.aar
${{ env.module_inventory }}/build/libs/${{ env.module_inventory }}-sources-v${{ env.tag_name }}.jar
131 changes: 0 additions & 131 deletions DOCKER_ENV

This file was deleted.

1 change: 0 additions & 1 deletion docker_tag

This file was deleted.

61 changes: 0 additions & 61 deletions output.log

This file was deleted.

0 comments on commit 3ea11e3

Please sign in to comment.