Revert "Test namespace.so for workflow runs" #1711
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Artifact | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
RUSTFLAGS: -Dwarnings | |
jobs: | |
build_artifact: | |
name: Build artifact | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: jetli/[email protected] | |
with: | |
version: 'latest' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: rust | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- run: make ci.artifact | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: function.zip | |
path: ${{ github.workspace }}/build.function/ |