We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20dadea commit 8cc2d3fCopy full SHA for 8cc2d3f
.github/scripts/publish_script.py
@@ -41,7 +41,9 @@
41
)
42
latest_entry["commit"] = commit_hash
43
44
- print(f"Publishing: {dataset['fileName']} v{latest_entry['version']}")
+ print(
45
+ f"Publishing: {dataset['fileName']} v{latest_entry['version'].lstrip('v')}"
46
+ )
47
try:
48
copy_source = {"Bucket": STAGING_BUCKET, "Key": staging_key}
49
client.copy_object(
.github/workflows/publish.yml
@@ -11,6 +11,8 @@ permissions:
11
jobs:
12
publish-data:
13
runs-on: ubuntu-latest
14
+ permissions:
15
+ contents: write # Allow pushing commits to the repository
16
steps:
17
- name: Checkout repository
18
uses: actions/checkout@v4
0 commit comments