We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3923f46 commit d66e661Copy full SHA for d66e661
.github/workflows/main.yml
@@ -3,6 +3,8 @@ name: CI
3
on:
4
repository_dispatch:
5
push:
6
+ branches:
7
+ - 'master'
8
paths-ignore:
9
- README.md
10
.github/workflows/pr.yml
@@ -0,0 +1,17 @@
1
+name: PR
2
+
+on:
+ [pull_request]
+jobs:
+ build:
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Get current date
14
+ id: date
15
+ run: echo "::set-output name=date::$(date +'%Y%m%d%H%M')"
16
+ - name: Build with Ant
17
+ run: ant -noinput -buildfile build.xml -Dtimestamp=${{steps.date.outputs.date}}
0 commit comments