abapGit/.github/workflows/build.yml
Lars Hvam fff8f1b237
new URL, updates (#3936)
* Update build.yml

* docs, update urls

* code, update links
2020-09-24 09:42:52 +02:00

35 lines
848 B
YAML

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Run npm steps
run: |
npm install
npm run eslint
npm run abaplint
npm run merge
npm run merge.ci
- name: deploy-merged-build
if: github.ref == 'refs/heads/master' && github.repository == 'abapGit/abapGit'
env:
GITHUB_API_KEY: ${{ secrets.MY_TOKEN }}
run: ./ci/deploy-merged-build.sh
- name: deploy-release-tag
if: github.ref == 'refs/heads/master' && github.repository == 'abapGit/abapGit'
env:
GITHUB_API_KEY: ${{ secrets.GITHUB_TOKEN }}
run: ./ci/deploy-release-tag.sh