mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-09-17 05:16:02 +00:00
20 lines
389 B
YAML
20 lines
389 B
YAML
name: Build the project
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Build project with APT
|
|
run: './buildScripts/buildInstallLocallyApt'
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: my-artifact
|
|
path: pdf2htmlEX/build
|