mirror of
https://github.com/ytdl-org/ytdl-nightly.git
synced 2025-02-15 19:00:42 +01:00
[workflows/build.yml] Fix explicit checkout branches
This commit is contained in:
parent
f2398b98c8
commit
923151ebb6
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
@ -36,7 +36,7 @@ jobs:
|
|||||||
- name: Check out
|
- name: Check out
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event.ref }}
|
ref: refs/heads/master
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
@ -62,11 +62,11 @@ jobs:
|
|||||||
git add -u
|
git add -u
|
||||||
git commit -m "Release (nightly) ${{ steps.update_version.outputs.version }}" \
|
git commit -m "Release (nightly) ${{ steps.update_version.outputs.version }}" \
|
||||||
-m "Created by: ${{ github.event.sender.login }}" -m ":ci skip all"
|
-m "Created by: ${{ github.event.sender.login }}" -m ":ci skip all"
|
||||||
git push origin --force ${{ github.event.ref }}:release
|
git push origin --force master:release
|
||||||
echo "head_sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"
|
echo "head_sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"
|
||||||
- name: Update master
|
- name: Update master
|
||||||
if: ${{ inputs.push-version-commit }}
|
if: ${{ inputs.push-version-commit }}
|
||||||
run: git push origin ${{ github.event.ref }}
|
run: git push origin master
|
||||||
- name: Get Changelog
|
- name: Get Changelog
|
||||||
id: get_changelog
|
id: get_changelog
|
||||||
run: |
|
run: |
|
||||||
@ -134,7 +134,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event.ref }}
|
ref: refs/heads/release
|
||||||
# reason to choose 3.4: https://media.discordapp.net/attachments/807245652072857613/942409077701619742/unknown.png
|
# reason to choose 3.4: https://media.discordapp.net/attachments/807245652072857613/942409077701619742/unknown.png
|
||||||
- name: Set up Python 3.4
|
- name: Set up Python 3.4
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
|
Loading…
x
Reference in New Issue
Block a user