Skip to content

WIP: try trigger the new file #1

WIP: try trigger the new file

WIP: try trigger the new file #1

Workflow file for this run

name: Checkout and Create Clean Tarball
on: [push, pull_request]
jobs:
create-clean-tarball:
runs-on: ubuntu-latest
steps:
- name: Checkout repository with submodules
uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Create clean tarball
run: |
# List excludes .git etc
git ls-files > files_to_include.txt
git submodule foreach --recursive 'git ls-files | sed "s|^|$path/|"' >> files_to_include.txt
# Create a gzipped tarball using the list of files
tar -czf yosys-src-vendored.tar.gz -T files_to_include.txt
- name: Upload tarball artifact
uses: actions/upload-artifact@v3
with:
name: clean-sources-tarball
path: yosys-src-vendored.tar.gz