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
544 B
21 lines
544 B
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 -qqy update
|
|
sudo apt -qqy 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
|
|
|