0.0.13 #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
release: | |
types: | |
- created | |
jobs: | |
release: | |
if: github.repository == 'mlrun/mlrun-setup' | |
permissions: | |
contents: write # for softprops/action-gh-release to create GitHub release | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
arch: [ amd64 ] | |
os: [ linux ] | |
steps: | |
- name: Dump github context | |
run: echo "$GITHUB_CONTEXT" | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
- name: Dump runner context | |
run: echo "$RUNNER_CONTEXT" | |
env: | |
RUNNER_CONTEXT: ${{ toJson(runner) }} | |
- name: Dump github ref | |
run: echo "$GITHUB_REF" | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Extract ref info | |
run: | | |
echo "REF_BRANCH=$(echo ${GITHUB_REF#refs/heads/} | tr / -)" | tee -a $GITHUB_ENV | |
echo "REF_TAG=$(echo ${GITHUB_REF#refs/tags/} | tr / -)" | tee -a $GITHUB_ENV | |
- name: Set MLRUNSETUP_TAG to release tag | |
if: github.event_name == 'release' | |
run: | | |
echo "MLRUNSETUP_TAG=${{ env.REF_TAG }}" >> $GITHUB_ENV | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- run: pip install -r requirements.txt | |
- run: pyinstaller -F mlsetup.py | |
- name: get datat | |
run: cp dist/mlsetup mlsetup-${{matrix.os}}-${{ matrix.arch }} | |
- run: | | |
echo $(sha256sum mlsetup-${{matrix.os}}-${{ matrix.arch }} | awk '{ print $1 }') >> sha256sum-linux-amd64.txt | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: mlsetup-${{matrix.os}}-${{ matrix.arch }},sha256sum-linux-amd64.txt | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |