Skip to content

Commit 1670d55

Browse files
committed
chore: split pipelines
1 parent 1077b91 commit 1670d55

2 files changed

Lines changed: 25 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ permissions:
44
pull-requests: write
55

66
jobs:
7-
hello_world_job:
7+
smoke_test:
88
runs-on: ubuntu-latest
9-
name: A job to say hello
9+
name: Smoke Test
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@v3
@@ -17,4 +17,3 @@ jobs:
1717
uses: ./
1818
with:
1919
lang: "python"
20-
debug_mode: "true"

.github/workflows/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
on:
2+
push:
3+
tags:
4+
- '*'
5+
6+
permissions:
7+
pull-requests: write
8+
9+
jobs:
10+
release_test:
11+
runs-on: ubuntu-latest
12+
name: Release Test
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v3
16+
with:
17+
fetch-depth: 0
18+
19+
- name: Test Action
20+
uses: ./
21+
with:
22+
lang: "python"
23+
debug_mode: "true"

0 commit comments

Comments
 (0)