Skip to content

Lens deployment init (#64) #69

Lens deployment init (#64)

Lens deployment init (#64) #69

Workflow file for this run

name: artifacts
on:
push:
branches: [main]
tags:
- "**"
- "!**-artifacts"
env:
FOUNDRY_PROFILE: ci
jobs:
artifacts:
name: Artifacts generation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
# This step is required by `generate-artifacts.sh` since it pins an old
# version of the Hardhat package ("[email protected]").
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Generate artifacts and push as new tag
run: bash .github/scripts/release-artifacts.sh "$GITHUB_REF"