mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
508 B
21 lines
508 B
4 years ago
|
name: Dist
|
||
|
on: [push, pull_request]
|
||
|
jobs:
|
||
|
dist_source:
|
||
|
name: Source
|
||
|
runs-on: ubuntu-18.04
|
||
|
steps:
|
||
|
- name: Checkout code
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Install packages
|
||
|
run: |
|
||
|
sudo apt install build-essential make python python-yaml bc git
|
||
|
- name: Dist source
|
||
|
run: |
|
||
|
make dist-source
|
||
|
- name: Upload artifact
|
||
|
uses: actions/upload-artifact@v2
|
||
|
with:
|
||
|
name: source-artifact
|
||
|
path: dist/*.tar.xz
|