Update Khiops PDF docs #46
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 Assets | |
on: | |
push: | |
tags: ['*'] | |
jobs: | |
release-assets: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Create the assets directory | |
run: | | |
./download-assets | |
cp assets-info.env ./assets | |
- name: Create the release archive | |
run: tar -zcvf khiops-win-install-assets-${{ github.ref_name }}.tar.gz ./assets | |
- name: Upload the release archive | |
uses: ncipollo/[email protected] | |
with: | |
artifacts: khiops-win-install-assets-${{ github.ref_name }}.tar.gz | |
token: ${{ secrets.GITHUB_TOKEN }} |