Corrected typos and increased kExcessivelyLargeIntegerBoundValue to 1e5 #3483
Workflow file for this run
This file contains hidden or 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-archive-artifact.yml | |
| on: | |
| push: | |
| # tags: | |
| # - "v*.*.*" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Create Build Environment | |
| run: cmake -E make_directory ${{runner.workspace}}/archive | |
| - name: Create Build Environment | |
| run: cmake -E make_directory ${{runner.workspace}}/archive_unzipped | |
| - name: Generate archive artifact | |
| run: | | |
| pwd | |
| cd ${{runner.workspace}} | |
| pwd | |
| tar -czvf source-archive.tar.gz HiGHS | |
| # --exclude='./archive' | |
| - name: unzip archive | |
| run: | | |
| cd ${{runner.workspace}} | |
| tar -xvzf source-archive.tar.gz -C ${{runner.workspace}}/archive_unzipped | |
| - name: ls unziped archive | |
| run: | | |
| cd ${{runner.workspace}}/archive_unzipped | |
| pwd | |
| ls | |
| cd HiGHS | |
| ls | |
| - name: copy archive | |
| run: | | |
| cp ${{runner.workspace}}/source-archive.tar.gz . | |
| ls | |
| - name: Release | |
| uses: softprops/action-gh-release@v2 | |
| if: startsWith(github.ref, 'refs/tags/') | |
| with: | |
| files: | | |
| source-archive.tar.gz |