Skip to content

Commit cb996a0

Browse files
authored
chore: add publish action (#3)
1 parent 47a9d5a commit cb996a0

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/layer.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,22 @@ jobs:
3131
echo "No valid package file found"
3232
exit 1
3333
fi
34+
35+
publish:
36+
runs-on: ubuntu-latest
37+
steps:
38+
- name: Checkout code
39+
uses: actions/checkout@v4
40+
- name: Set up Node.js
41+
uses: actions/setup-node@v4
42+
- name: Install oopm
43+
run: npm install -g oopm
44+
- name: Publish OOMOL Package
45+
uses: oomol-lab/oopm-publish-action@main
46+
3447

3548
export-layer:
36-
needs: get-version
49+
needs: [get-version, publish]
3750
permissions:
3851
contents: read
3952
id-token: write

0 commit comments

Comments
 (0)