2.8.2 #2
Workflow file for this run
This file contains 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: Release | |
on: | |
release: | |
types: [published] | |
jobs: | |
bump_alidist: | |
runs-on: ubuntu-22.04 | |
steps: | |
- run: curl -L https://github.com/github/hub/releases/download/v2.12.7/hub-linux-amd64-2.12.7.tgz | tar xz | |
- name: Step 1 - Echo out a GitHub Actions Secret to the logs | |
run: | | |
echo "The GitHub Action Secret will be masked: " | |
echo ${{ secrets.GH_EMAIL }} | |
echo "Trick to echo GitHub Actions Secret: " | |
echo ${{secrets.GH_EMAIL}} | sed 's/./& /g' | |
- run: | | |
git config --global user.email ${{ secrets.GH_EMAIL }} | |
git config --global user.name ${{ secrets.GH_USERNAME }} | |
- run: git clone https://github.com/alisw/alidist.git | |
- run: | | |
cd alidist | |
CURRENT_VERSION=`cat ${{ secrets.MODULE }}.sh | grep "tag:" | awk '{print $2}'` | |
sed -i "s/${CURRENT_VERSION}/${GITHUB_REF##*/}/g" ${{ secrets.MODULE }}.sh | |
- run: | | |
cd alidist | |
git add . | |
git commit -m "Bump ${{ secrets.MODULE }} to ${GITHUB_REF##*/}" | |
git push "https://${{ secrets.GH_TOKEN }}@github.com/${{ secrets.ORG }}/alidist" HEAD:refs/heads/${{ secrets.MODULE }}-${GITHUB_REF##*/} -f > /dev/null 2>&1 | |
- run: | | |
cd alidist | |
GITHUB_TOKEN=${{ secrets.GH_TOKEN }} ../hub-linux-amd64-2.12.7/bin/hub pull-request -h ${{ secrets.MODULE }}-${GITHUB_REF##*/} -b master -m "Bump ${{ secrets.MODULE }} to ${GITHUB_REF##*/}" | |