-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (57 loc) · 1.82 KB
/
run.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
65
66
67
68
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will install Deno then run `deno lint` and `deno test`.
# For more information see: https://github.com/denoland/setup-deno
name: Deno
on:
workflow_dispatch:
inputs:
api:
description: API URL
required: true
head_sha:
description: Commit Hash
required: true
jwt:
description: JWT
required: true
install_token:
description: Install token
required: true
check_id:
description: Check ID
required: true
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup Bun
uses: oven-sh/[email protected]
- name: Setup Deno
uses: denoland/[email protected]
- name: Download
run: |
wget "${{ github.event.inputs.api }}/mods/deno.json"
ls
- name: Secret
run: |
echo "::add-mask::${{ github.event.inputs.api }}"
echo "::add-mask::${{ github.event.inputs.install_token }}"
echo "::add-mask::${{ github.event.inputs.jwt }}"
- name: Run
run: deno run -A "${{ github.event.inputs.api }}/mods/checker/main.ts" "${{ github.event.inputs.api }}" "${{ github.event.inputs.head_sha }}" "${{ github.event.inputs.jwt }}" "${{ github.event.inputs.install_token }}" "${{ github.event.inputs.check_id }}"
env:
NISSMICK_CONFIG: "${{ secrets.NISSMICK_CONFIG }}"
- name: Info
run: |
cd nissmick-alpha
echo 'ls'
ls
echo 'git info'
git branch