Skip to content

refactor: use Property API for lazy configuration & update dependencies #9

refactor: use Property API for lazy configuration & update dependencies

refactor: use Property API for lazy configuration & update dependencies #9

Workflow file for this run

name: Pre Merge Checks
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
gradle:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# needed for FirstCommitHashTaskTest
fetch-depth: 0
- name: Download and Install Octo CLI
run: |
wget https://github.com/OctopusDeploy/OctopusCLI/releases/download/v9.1.7/OctopusTools.9.1.7.linux-x64.tar.gz
mkdir -p $HOME/octo
tar -xzf OctopusTools.9.1.7.linux-x64.tar.gz -C $HOME/octo
echo "$HOME/octo" >> $GITHUB_PATH
export GITHUB_PATH=$HOME/octo:$GITHUB_PATH
echo 11111
echo $GITHUB_PATH
which octo
- name: Download and Install Octo CLI 2
run: |
echo 2222
echo $GITHUB_PATH
which octo
octo --version
# - name: Cache
# uses: gradle/[email protected]
# - name: Build
# run: ./gradlew build
# - name: Validate
# run: ./gradlew check validatePlugins --continue
# - name: Integration Test
# run: ./gradlew integrationTest