-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (49 loc) · 1.32 KB
/
ds.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
name: Update DS
on:
workflow_dispatch: ~
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 0
- name: Write key
run: |
echo '${{ secrets.MAIN }}' > compiler/ds/src/main/java/org/example/Main.java
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
cache: 'gradle'
- name: Install jq
run: sudo apt-get install -y jq
- name: Download apk
run: |
cd compiler/ds
chmod +x download.sh
./download.sh
- name: Parse apk
run: |
cd compiler/ds
./gradlew build
./gradlew run
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
- name: Commit changes
run: |
git add simnet/utils/ds.py
git commit -S -m ":bento: Update ds salt"
git push