Skip to content

Commit 122409f

Browse files
committed
chore: Debug CI
1 parent d88ea29 commit 122409f

File tree

2 files changed

+17
-22
lines changed

2 files changed

+17
-22
lines changed

.github/workflows/publish-test.yml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,14 @@ on:
55
push:
66
branches:
77
- '*'
8-
# tags:
9-
# - 'v*'
10-
11-
# permissions:
12-
# id-token: write # Required for OIDC
13-
# packages: write
14-
# contents: read
15-
# security-events: write # Required for uploading SARIF files
168

179
jobs:
1810
build-and-test:
1911
uses: ./.github/workflows/main.yml
2012

21-
# publish:
22-
# needs: build-and-test
23-
# permissions:
24-
# id-token: write # Required for OIDC
25-
# packages: write
26-
# contents: read
27-
# uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/[email protected]
13+
publish:
14+
needs: build-and-test
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: 'Test Publish Step 2'
18+
run: echo "This is a test publish step 2."

.github/workflows/publish.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,14 @@ jobs:
1818
build-and-test:
1919
uses: ./.github/workflows/main.yml
2020

21-
# publish:
22-
# needs: build-and-test
23-
# permissions:
24-
# id-token: write # Required for OIDC
25-
# packages: write
26-
# contents: read
27-
# uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/[email protected]
21+
publish:
22+
needs: build-and-test
23+
permissions:
24+
id-token: write # Required for OIDC
25+
packages: write
26+
contents: read
27+
# uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/[email protected]
28+
runs-on: ubuntu-latest
29+
steps:
30+
- name: 'Test Publish Step'
31+
run: echo "This is a test publish step."

0 commit comments

Comments
 (0)