-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (30 loc) · 902 Bytes
/
android.yml
File metadata and controls
34 lines (30 loc) · 902 Bytes
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
name: Release CI
on:
push:
paths-ignore:
- 'docs/**'
- 'mkdocs.yml'
tags:
- '*'
- '!docs*'
workflow_dispatch:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: echo info
run: echo 'https://jitpack.io/com/github/mcxinyu/javascript-interface/${{github.ref_name}}/javascript-interface-${{github.ref_name}}.pom'
- name: Build JitPack
uses: fjogeleit/http-request-action@v1.5.0
id: JitPack
with:
url: 'https://jitpack.io/com/github/mcxinyu/javascript-interface/${{github.ref_name}}/javascript-interface-${{github.ref_name}}.pom'
method: 'GET'
ignoreStatusCodes: 408
preventFailureOnNoResponse: true
timeout: 600000
- name: Show Response
run: echo ${{ steps.JitPack.outputs.response }}