abapgit-agent 1.1.4 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -36,32 +36,20 @@ jobs:
36
36
  id: get_tag
37
37
  run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
38
38
 
39
- - name: Check for release notes file
40
- id: check_release_notes
39
+ - name: Prepare release notes
40
+ id: release_notes
41
41
  run: |
42
42
  if [ -f "RELEASE_NOTES.md" ]; then
43
- echo "RELEASE_FILE=true" >> $GITHUB_OUTPUT
43
+ echo "CONTENT<<EOF" >> $GITHUB_OUTPUT
44
+ cat RELEASE_NOTES.md >> $GITHUB_OUTPUT
45
+ echo "EOF" >> $GITHUB_OUTPUT
44
46
  else
45
- echo "RELEASE_FILE=false" >> $GITHUB_OUTPUT
47
+ echo "CONTENT=No release notes" >> $GITHUB_OUTPUT
46
48
  fi
47
49
 
48
- - name: Read release notes from file
49
- if: steps.check_release_notes.outputs.RELEASE_FILE == 'true'
50
- id: release_notes_file
51
- run: |
52
- CONTENT=$(cat RELEASE_NOTES.md)
53
- echo "CONTENT=$CONTENT" >> $GITHUB_OUTPUT
54
-
55
- - name: Generate default release notes
56
- if: steps.check_release_notes.outputs.RELEASE_FILE == 'false'
57
- id: release_notes_default
58
- run: |
59
- CHANGES=$(git log --pretty=format:"- %s (%h)" -20)
60
- echo "CHANGES=$CHANGES" >> $GITHUB_OUTPUT
61
-
62
50
  - name: Create GitHub Release
63
51
  uses: softprops/action-gh-release@v1
64
52
  with:
65
53
  tag_name: ${{ steps.get_tag.outputs.VERSION }}
66
54
  name: Release ${{ steps.get_tag.outputs.VERSION }}
67
- body: ${{ steps.release_notes_file.outputs.CONTENT }}
55
+ body: ${{ steps.release_notes.outputs.CONTENT }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "abapgit-agent",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "description": "ABAP Git Agent - Pull and activate ABAP code via abapGit from any git repository",
5
5
  "main": "src/index.js",
6
6
  "bin": {