-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (56 loc) · 1.76 KB
/
check-tapp.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Check the tapplet
on:
workflow_dispatch:
inputs:
package-name:
description: "Tapplet package name"
required: true
default: "tapp-example"
package-version:
description: "The tapplet package version"
required: true
default: "1.0.0"
pull_request:
branches:
- main
# Give the default GITHUB_TOKEN write permission to commit and push the changed files back to the repository.
permissions:
contents: write
jobs:
get-tapp-id:
runs-on: ubuntu-latest
outputs:
prefix: ${{ steps.var-setup.outputs.prefix }}
name: ${{ steps.var-setup.outputs.name }}
version: ${{ steps.var-setup.outputs.version }}
steps:
- name: Variables setup
id: var-setup
shell: bash
run: |
pr_name=${{ github.event.pull_request.title }}
IFS="/" read -r PREFIX NAME_VERSION <<< "$pr_name"
IFS="@" read -r NAME VERSION <<< "$NAME_VERSION"
echo "Prefix: $PREFIX"
echo "Name: $NAME"
echo "Version: $VERSION"
echo "prefix=${PREFIX}" >> $GITHUB_OUTPUT
echo "name=${NAME}" >> $GITHUB_OUTPUT
echo "version=${VERSION}" >> $GITHUB_OUTPUT
check-tapp:
runs-on: ubuntu-latest
outputs:
status: ${{steps.tapp-checker.outputs.status}}
needs: get-tapp-id
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Check tapplet package
id: tapp-checker
if: needs.get-tapp-id.outputs.prefix == 'Add'
uses: karczuRF/ga-test@main
with:
package-name: ${{needs.get-tapp-id.outputs.name}}
package-version: ${{needs.get-tapp-id.outputs.version}}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}