Skip to content

nginx builder

nginx builder #31

Workflow file for this run

name: nginx builder
on:
workflow_dispatch:
push:
branches:
- ubuntu
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4.1.7
with:
submodules: true
- name: Init Repo
run: |
bash -x ./ci.sh
pwd
ls -lh
- name: upload release
uses: ncipollo/release-action@v1.14.0
with:
allowUpdates: true
tag: "release"
body: ${{ github.event.release.body }}
prerelease: "true"
artifacts: "release/*.deb"
token: ${{ secrets.GITHUB_TOKEN }}