action.yaml 348 B

1234567891011
  1. name: "Setup"
  2. description: "Setup"
  3. runs:
  4. using: "composite"
  5. steps:
  6. - run: sudo apt-get update && sudo apt-get install -y pkg-config build-essential libudev-dev
  7. shell: bash
  8. - run: echo "ANCHOR_VERSION=$(cat ./VERSION)" >> $GITHUB_ENV
  9. shell: bash
  10. - run: git submodule update --init --recursive --depth 1
  11. shell: bash