all repos — nimhttpd @ 6f00d4d1a843c5cdee44d648a99bbc103a7e3567

A useful static file web server.

Update add-artifacts-to-current-release.yml
Fabio Cevasco h3rald@h3rald.com
Thu, 22 Apr 2021 21:51:25 +0200
commit

6f00d4d1a843c5cdee44d648a99bbc103a7e3567

parent

00ec471c8d29f93463d3606180ae37075489b6e0

1 files changed, 78 insertions(+), 66 deletions(-)

jump to
M .github/workflows/add-artifacts-to-current-release.yml.github/workflows/add-artifacts-to-current-release.yml

@@ -1,98 +1,110 @@

-name: Add artifacts to current release +name: Add Artifacts to Current Release # Controls when the action will run. on: - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: - jobs: - release: +jobs: + release: name: "Build and upload artifacts" runs-on: ${{ matrix.os }} strategy: - matrix: - os: - - ubuntu-latest - - macos-latest - - windows-latest + matrix: + os: + - ubuntu-latest + - macos-latest + - windows-latest env: - CHOOSENIM_CHOOSE_VERSION: stable - CHOOSENIM_NO_ANALYTICS: 1 + CHOOSENIM_CHOOSE_VERSION: stable + CHOOSENIM_NO_ANALYTICS: 1 steps: - # Cancel other actions of the same type that might be already running - - name: "Cancel similar actions in progress" - uses: styfle/cancel-workflow-action@0.6.0 - with: - access_token: ${{ github.token }} + # Cancel other actions of the same type that might be already running + - name: "Cancel similar actions in progress" + uses: styfle/cancel-workflow-action@0.6.0 + with: + access_token: ${{ github.token }} - # Detects OS and provide Nim-friendly OS identifiers - - name: Detect current OS - id: os - run: echo "::set-output name=id::${{matrix.os == 'ubuntu-latest' && 'linux' || matrix.os == 'macos-latest' && 'macosx' || matrix.os == 'windows-latest' && 'windows'}}" + # Detects OS and provide Nim-friendly OS identifiers + - name: Detect current OS + id: os + run: echo "::set-output name=id::${{matrix.os == 'ubuntu-latest' && 'linux' || matrix.os == 'macos-latest' && 'macosx' || matrix.os == 'windows-latest' && 'windows'}}" # Checks out the repository - - uses: actions/checkout@v2 + - uses: actions/checkout@v2 # Installs libraries - - name: install musl-gcc - run: sudo apt-get install -y musl-tools - if: matrix.os == 'ubuntu-latest' + - name: install musl-gcc + run: sudo apt-get install -y musl-tools + if: matrix.os == 'ubuntu-latest' # Sets path (Linux, macOS) - - name: Update $PATH - run: echo "$HOME/.nimble/bin" >> $GITHUB_PATH - if: matrix.os == 'macos-latest' || matrix.os == 'ubuntu-latest' - + - name: Update $PATH + shell: bash + run: | + echo "$HOME/.nimble/bin" >> $GITHUB_PATH + echo $GITHUB_WORKSPACE >> $GITHUB_PATH # Sets path (Windows) - - name: Update %PATH% - run: echo "${HOME}/.nimble/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - if: matrix.os == 'windows-latest' + - name: Update %PATH% + run: | + echo "${HOME}/.nimble/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + echo "${GITHUB_WORKSPACE}" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + if: matrix.os == 'windows-latest' # Install the Nim compiler - - name: Install Nim - run: | - curl https://nim-lang.org/choosenim/init.sh -sSf > init.sh - sh init.sh -y + - name: Install Nim + run: | + curl https://nim-lang.org/choosenim/init.sh -sSf > init.sh + sh init.sh -y + # Temporary Windows-specific fix (missing certificates for nimble) + - name: Install cert (temporary fix, windows only) + run: | + curl https://curl.se/ca/cacert.pem -L -o cacert.pem + if: matrix.os == 'windows-latest' - # Build for Linux - - name: Build (Linux) - run: nimble build -d:release --gcc.exe:musl-gcc --gcc.linkerexe:musl-gcc --gc:orc --opt:size - if: matrix.os == 'ubuntu-latest' + # Build for Linux + - name: Build (Linux) + run: | + nimble build -v --opt:size --gc:orc -d:release --gcc.exe:musl-gcc --gcc.linkerexe:musl-gcc + if: matrix.os == 'ubuntu-latest' # Build for macOS/Windows - - name: Build (macOS, Windows) - run: nimble build c -d:release --gc:orc --deepcopy:on --opt:size - if: matrix.os == 'macos-latest' || matrix.os == 'windows-latest' + - name: Build (macOS, Windows) + shell: bash + run: | + nimble build -v -y -d:release --gc:orc --opt:size + if: matrix.os == 'macos-latest' || matrix.os == 'windows-latest' # Retrieve ID and Name of the current (draft) release - - name: "Get current release" - id: current-release - uses: InsonusK/get-latest-release@v1.0.1 - with: - myToken: ${{ github.token }} - exclude_types: "release" - view_top: 1 + - name: "Get current release" + id: current-release + uses: InsonusK/get-latest-release@v1.0.1 + with: + myToken: ${{ github.token }} + exclude_types: "release" + view_top: 1 - # Package the resulting Linux/macOS binary - - name: Create artifact (Linux, macOS) - run: zip nimhttpd_${{steps.current-release.outputs.tag_name}}_${{steps.os.outputs.id}}_x64.zip nimhttpd - if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' + # Package the resulting Linux/macOS binary + - name: Create artifact (Linux, macOS) + shell: bash + run: zip nimhttpd_${{steps.current-release.outputs.tag_name}}_${{steps.os.outputs.id}}_x64.zip nimhttpd + if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' # Package the resulting Windows binary - - name: Create artifact (Windows) - run: Compress-Archive -Path nimhttpd.exe -DestinationPath nimhttpd_${{steps.current-release.outputs.tag_name}}_windows_x64.zip - if: matrix.os == 'windows-latest' + - name: Create artifact (Windows) + run: Compress-Archive -Path nimhttpd.exe -DestinationPath nimhttpd_${{steps.current-release.outputs.tag_name}}_windows_x64.zip + if: matrix.os == 'windows-latest' # Upload artifacts to current draft release - - name: "Upload to current release" - uses: xresloader/upload-to-github-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: "Upload to current release" + uses: xresloader/upload-to-github-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - file: "nimhttpd_v*.zip" - overwrite: true - tag_name: ${{steps.current-release.outputs.tag_name}} - release_id: ${{steps.current-release.outputs.id }} - verbose: true + file: "hastyscribe_v*.zip" + overwrite: true + tag_name: ${{steps.current-release.outputs.tag_name}} + release_id: ${{steps.current-release.outputs.id }} + verbose: true