Sync AppMan Version with AM #2535
This file contains hidden or 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
| name: Sync AppMan Version with AM | |
| concurrency: | |
| group: build-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| schedule: | |
| - cron: "5 2/2 * * 0-6" | |
| workflow_dispatch: | |
| jobs: | |
| release: | |
| permissions: write-all | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/download-artifact@v4.1.8 | |
| - name: Get Date | |
| run: | | |
| AM_TAG="$(curl -Ls https://api.github.com/repos/ivan-hc/AM/releases/latest | jq '.' | grep "tag_name" | tr '" ' '\n' | grep [0-9])" | |
| APPMAN_TAG=$(curl -Ls https://api.github.com/repos/ivan-hc/AppMan/releases/latest | jq '.' | grep "tag_name" | tr '" ' '\n' | grep [0-9]) | |
| if [ "$AM_TAG" != "$APPMAN_TAG" ]; then | |
| echo NEW_TAG="${AM_TAG}" >> "${GITHUB_ENV}" | |
| echo "See https://github.com/ivan-hc/AM/releases/tag/${AM_TAG}" > release-note.txt | |
| else | |
| echo NEW_TAG="${APPMAN_TAG}" >> "${GITHUB_ENV}" | |
| echo "See https://github.com/ivan-hc/AM/releases/tag/${APPMAN_TAG}" > release-note.txt | |
| fi | |
| continue-on-error: false | |
| - name: Snapshot Releaser | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| name: "AppMan ${{ env.NEW_TAG}}" | |
| tag_name: "${{ env.NEW_TAG}}" | |
| prerelease: false | |
| draft: false | |
| generate_release_notes: false | |
| body_path: release-note.txt | |
| make_latest: true | |
| continue-on-error: false |