You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
116
-
asset_path: ./releaseORM.zip
117
-
asset_name: releaseORM.zip
118
-
asset_content_type: application/zip
119
-
# update version setup.py
120
-
- name: Checkout code
121
-
uses: actions/checkout@v3
122
-
with:
123
-
ref: main
124
-
- name: Update version
125
-
run: |
126
-
sed -i "s/version='.*'/version='${{ steps.taggerDryRun.outputs.new_tag }}'/" setup.py
127
-
env:
128
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
129
-
- name: Commit changes
130
-
uses: stefanzweifel/git-auto-commit-action@v4
131
-
with:
132
-
commit_message: "Update version to ${{ steps.taggerDryRun.outputs.new_tag }}"
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
112
+
asset_path: ./releaseORM.zip
113
+
asset_name: releaseORM.zip
114
+
asset_content_type: application/zip
115
+
# update version setup.py
116
+
- name: Checkout code
117
+
uses: actions/checkout@v3
118
+
with:
119
+
ref: main
120
+
- name: Update version
121
+
run: |
122
+
sed -i "s/version='.*'/version='${{ steps.taggerDryRun.outputs.new_tag }}'/" setup.py
123
+
env:
124
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
125
+
- name: Commit changes
126
+
uses: stefanzweifel/git-auto-commit-action@v4
127
+
with:
128
+
commit_message: "Update version to ${{ steps.taggerDryRun.outputs.new_tag }}"
0 commit comments