Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 hopefully final version 🤞🏻 #94

Merged
merged 36 commits into from
Nov 3, 2023
Merged
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
9c15998
update workflow before publishing python package
bisgaard-itis Oct 23, 2023
ab1bc1e
Merge branch 'master' of github.com:bisgaard-itis/osparc-simcore-clients
bisgaard-itis Oct 23, 2023
60c4f60
Merge branch 'ITISFoundation:master' into master
bisgaard-itis Oct 23, 2023
3aa7d70
fix dependency issue and bump version
bisgaard-itis Oct 23, 2023
a9810d4
Merge branch 'master' of github.com:bisgaard-itis/osparc-simcore-clients
bisgaard-itis Oct 23, 2023
5d2ceb2
point to website in project description
bisgaard-itis Oct 23, 2023
185195c
Merge branch 'ITISFoundation:master' into master
bisgaard-itis Oct 23, 2023
f58c10f
Merge branch 'ITISFoundation:master' into master
bisgaard-itis Oct 26, 2023
fdd75b7
Merge branch 'ITISFoundation:master' into master
bisgaard-itis Oct 27, 2023
11e369d
fix broken dependency
bisgaard-itis Nov 2, 2023
e844983
improve doc
bisgaard-itis Nov 2, 2023
c798687
Merge branch 'ITISFoundation:master' into master
bisgaard-itis Nov 2, 2023
55bdba4
Merge branch 'ITISFoundation:master' into master
bisgaard-itis Nov 3, 2023
9ce0911
add github token to download artifacts
bisgaard-itis Nov 3, 2023
39210ef
ensure only read-access @wvangeit
bisgaard-itis Nov 3, 2023
50c487f
yet another attempt at downloading artifacts
bisgaard-itis Nov 3, 2023
128a1a7
resolve merge conflicts
bisgaard-itis Nov 3, 2023
3d8d1eb
make sure to use repo that ran the trigger wf
bisgaard-itis Nov 3, 2023
3f2b07a
Merge branch 'ITISFoundation:master' into master
bisgaard-itis Nov 3, 2023
48cf475
another attempt at fixing
bisgaard-itis Nov 3, 2023
77d1e81
change owner
bisgaard-itis Nov 3, 2023
21b446b
change repo owner
bisgaard-itis Nov 3, 2023
10b5ce0
Merge branch 'ITISFoundation:master' into master
bisgaard-itis Nov 3, 2023
d90cccc
allow publishing to testpypi also when pr
bisgaard-itis Nov 3, 2023
b1561a4
minor change
bisgaard-itis Nov 3, 2023
2db2d81
Merge branch 'ITISFoundation:master' into master
bisgaard-itis Nov 3, 2023
a22c0c4
revert minor (but breaking) change
bisgaard-itis Nov 3, 2023
9a6a1e0
Merge branch 'ITISFoundation:master' into master
bisgaard-itis Nov 3, 2023
a83b349
minor fix
bisgaard-itis Nov 3, 2023
e4e07d7
Merge branch 'master' of github.com:bisgaard-itis/osparc-simcore-clients
bisgaard-itis Nov 3, 2023
0bd41d9
Merge branch 'ITISFoundation:master' into master
bisgaard-itis Nov 3, 2023
565a00e
add debug messages
bisgaard-itis Nov 3, 2023
f8fd235
Merge branch 'ITISFoundation:master' into master
bisgaard-itis Nov 3, 2023
a3e668f
another debug message
bisgaard-itis Nov 3, 2023
7a77a55
Merge branch 'ITISFoundation:master' into master
bisgaard-itis Nov 3, 2023
1e03c59
hopefully the final version
bisgaard-itis Nov 3, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions .github/workflows/publish-python-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,9 @@ permissions: read-all

jobs:

debug:
name: debug
runs-on: ubuntu-latest
steps:
- name: debug messages
run: |
echo "github.event.workflow_run.event=${{github.event.workflow_run.event}}"

publish-osparc_client:
name: Publish osparc_client wheel
if: github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event.event_name == 'push'
if: github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'push'
runs-on: ubuntu-latest
environment:
name: pypi
Expand Down Expand Up @@ -52,7 +44,7 @@ jobs:

publish-osparc:
name: Publish osparc wheel
if: github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event.event_name == 'push'
if: github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'push'
runs-on: ubuntu-latest
environment:
name: pypi
Expand Down