Skip to content

Commit 3b70232

Browse files
authored
MRG: Merge pull request #18 from octue/fix-deployment-workflow
OPS: Use fixed deployment workflow
2 parents 732e68d + a06c324 commit 3b70232

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
deploy:
1010
if: "!contains(github.event.head_commit.message, 'skipci')"
11-
uses: octue/workflows/.github/workflows/[email protected].0
11+
uses: octue/workflows/.github/workflows/[email protected].1
1212
permissions:
1313
id-token: write
1414
contents: read

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464

6565

6666
deploy:
67-
uses: octue/workflows/.github/workflows/[email protected].0
67+
uses: octue/workflows/.github/workflows/[email protected].1
6868
needs: release
6969
permissions:
7070
id-token: write

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ from octue.resources import Child, Dataset, Manifest
2525

2626
# Point to your data service
2727
child = Child(
28-
id="my-org/openfast-service:0.10.0",
28+
id="my-org/openfast-service:0.10.1",
2929
backend={"name": "GCPPubSubBackend", "project_name": "my-project"},
3030
)
3131

@@ -48,4 +48,4 @@ the service supports.
4848

4949
| `openfast-service` versions | OpenFAST version |
5050
|-----------------------------| ---------------- |
51-
| `<=0.10.0` | `3.5.3` |
51+
| `<=0.10.1` | `3.5.3` |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "openfast-service"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
description = ""
55
authors = ["Marcus Lugg <[email protected]>"]
66
readme = "README.md"

tests/test_deployment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
apply_log_handler()
88

99

10-
SRUID = "octue/openfast-service:0.10.0"
10+
SRUID = "octue/openfast-service:0.10.1"
1111

1212

1313
@unittest.skipUnless(

0 commit comments

Comments
 (0)