mirror of https://github.com/procxx/kepka.git
Fixed master branch updater Github Action.
This commit is contained in:
parent
b5b78c0ade
commit
295aa644bf
|
@ -12,9 +12,17 @@ jobs:
|
||||||
to_branch: "master"
|
to_branch: "master"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
|
if: env.SKIP == '0'
|
||||||
- name: Push the code to the master branch.
|
- name: Push the code to the master branch.
|
||||||
|
if: env.SKIP == '0'
|
||||||
run: |
|
run: |
|
||||||
url=https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
|
token=${{ secrets.TOKEN_FOR_MASTER_UPDATER }}
|
||||||
|
if [ -z "${token}" ]; then
|
||||||
|
echo "Token is unset. Nothing to do."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
url=https://x-access-token:$token@github.com/$GITHUB_REPOSITORY
|
||||||
latest_tag=$(git describe --tags --abbrev=0)
|
latest_tag=$(git describe --tags --abbrev=0)
|
||||||
echo "Latest tag: $latest_tag"
|
echo "Latest tag: $latest_tag"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue