File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 30
30
- name : Download python script
31
31
run : >-
32
32
curl -o create_release_branch.py
33
- https://raw.githubusercontent.com/abikouo /github_actions/release_v2 /scripts/create_release_branch.py
33
+ https://raw.githubusercontent.com/ansible-network /github_actions/main /scripts/create_release_branch.py
34
34
35
35
- name : Compute release version and create release branch
36
36
id : compute-version
59
59
- name : Download python script used to update galaxy file
60
60
run : >-
61
61
curl -o update_galaxy_file.py
62
- https://raw.githubusercontent.com/abikouo /github_actions/release_v2 /scripts/update_galaxy_file.py
62
+ https://raw.githubusercontent.com/ansible-network /github_actions/main /scripts/update_galaxy_file.py
63
63
if : ${{ (steps.compute-version.outputs.release_version != '') }}
64
64
65
65
- name : Compute release version and create release branch
Original file line number Diff line number Diff line change @@ -55,15 +55,15 @@ jobs:
55
55
56
56
- name : create tag
57
57
run : |
58
- curl -o create_github_tag.py https://raw.githubusercontent.com/abikouo /github_actions/release_v2 /scripts/create_github_tag.py
58
+ curl -o create_github_tag.py https://raw.githubusercontent.com/ansible-network /github_actions/main /scripts/create_github_tag.py
59
59
python3 ./create_github_tag.py --repository ${{ github.repository }} --tag ${{ steps.read-tag.outputs.release_tag }} --branch ${{ inputs.branch_name }}
60
60
env :
61
61
GITHUB_TOKEN : ${{ secrets.gh_token }}
62
62
if : " contains(github.event.pull_request.labels.*.name, 'ok-to-tag')"
63
63
64
64
- name : Parse release content
65
65
run : |
66
- curl -o create_github_release.py https://raw.githubusercontent.com/abikouo /github_actions/release_v2 /scripts/create_github_release.py
66
+ curl -o create_github_release.py https://raw.githubusercontent.com/ansible-network /github_actions/main /scripts/create_github_release.py
67
67
python3 ./create_github_release.py --repository ${{ github.repository }} --release-tag ${{ steps.read-tag.outputs.release_tag }} --release-name "${{ inputs.release_prefix }} ${{ steps.read-tag.outputs.release_tag }}"
68
68
env :
69
69
GITHUB_TOKEN : ${{ secrets.gh_token }}
You can’t perform that action at this time.
0 commit comments