Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
luongvo committed Nov 3, 2023
1 parent b063178 commit a1d6887
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/android_deploy_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,20 @@ jobs:
- name: Check out
uses: actions/checkout@v3

- name: Find Head
id: head
run: echo "::set-output name=head::$(git rev-parse HEAD)"

- name: Build changelog on "develop"
id: changelog
uses: mikepenz/release-changelog-builder-action@v4
with:
configuration: ".github/workflows/configuration.json"
fromTag: "1.12.0"
toTag: "f41978f4c4bcc0848f3aa0a413815c5db6aafde2"
toTag: ${{ steps.head.outputs.head }}
token: ${{ secrets.GITHUB_TOKEN }}

- name: Print release notes
run: |
echo ${{ github.event.pull_request.head.ref }}
echo ${{ steps.head.outputs.head }}
echo ${{ steps.changelog.outputs.changelog }}
3 changes: 3 additions & 0 deletions .github/workflows/configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,8 @@
"type : chore"
]
}
],
"base_branches": [
"test-lucas"
]
}

0 comments on commit a1d6887

Please sign in to comment.