Skip to content

Commit 9a5634f

Browse files
Fourth time's the charm (#288)
1 parent a0f6a48 commit 9a5634f

File tree

3 files changed

+9
-13
lines changed

3 files changed

+9
-13
lines changed

.github/workflows/cd.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,10 @@ jobs:
8282
gh attestation verify "${artifact}" --repo $GH_REPO
8383
done
8484
85-
- name: Upload release assets with a draft release
86-
uses: softprops/action-gh-release@51cfd90a6d81cfe329568f851fe2236ab4416d17 # v2.2.0
87-
with:
88-
files: upload/*
89-
draft: true
90-
91-
- name: Publish final release
92-
uses: softprops/action-gh-release@51cfd90a6d81cfe329568f851fe2236ab4416d17 # v2.2.0
93-
with:
94-
generate_release_notes: true
95-
draft: false
85+
- name: Create and publish release
86+
env:
87+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
88+
run: |
89+
gh release create ${{ github.ref_name }} \
90+
--generate-notes \
91+
upload/*

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupytereverywhere",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"description": "A Jupyter extension for k12 education",
55
"keywords": [
66
"jupyter",

ui-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupytereverywhere-ui-tests",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"description": "Jupyter Everywhere Integration Tests",
55
"private": true,
66
"scripts": {

0 commit comments

Comments
 (0)