Skip to content

addec checkout

addec checkout #10

Workflow file for this run

name: Download and Unzip latest AirConnect Release
on:
push:
branches:
- ci
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Get Release Version
id: get_release
uses: robinraju/[email protected]
with:
repository: "philippe44/AirConnect"
latest: true
tarBall: false
zipBall: false
fileName: "AirConnect*.zip"
# "downloads" => It will create directory $GITHUB_WORKSPACE/downloads
out-file-path: "src/dsm7/bin"
extract: true
- name: Test downloaded Release
id: test_release
run: |
RELEASE_VERSION=${{ steps.get_release.outputs.tag_name }}
RELEASE_FILES=${{ fromJson(steps.get_release.outputs.downloaded_files)[0] }}
echo "Using AirConnect version '${RELEASE_VERSION}'"
echo "Using downloaded file: '${RELEASE_FILES}'"
ls -ltR ${GITHUB_WORKSPACE/src/dsm7}