Skip to content

Merge pull request #36 from AdguardTeam/fix/cert_sort #55

Merge pull request #36 from AdguardTeam/fix/cert_sort

Merge pull request #36 from AdguardTeam/fix/cert_sort #55

Workflow file for this run

name: Build and deploy
on:
push:
branches:
- "*"
tags:
- v*
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup ndk
uses: nttld/setup-ndk@v1
id: setup-ndk
with:
ndk-version: r23
add-to-path: true
- name: build dist
run: |
git submodule init && git submodule update
./dist.sh
ls -la
- name: create release
uses: ncipollo/release-action@v1
if: startsWith(github.ref, 'refs/tags/v')
with:
artifacts: "adguardcert-*.zip"
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: true