Skip to content

Cross Platform Action 1.3.0

Latest

Choose a tag to compare

@github-actions github-actions released this 22 Jun 20:06
Immutable release. Only release title and notes can be modified.

Added

  • Add support for FreeBSD 15.1 (#153)

  • Add a --environment-variables post-flag to the cpa.sh custom shell for
    forwarding additional environment variables to the VM on a per-step basis,
    without having to declare them on the Start VM step via the
    environment_variables input
    (#145):

    - name: Run a command with extra environment variables
      shell: cpa.sh {0} --environment-variables MY_ENV1 MY_ENV2
      env:
        MY_ENV1: value1
        MY_ENV2: value2
      run: echo "$MY_ENV1 $MY_ENV2"