all repos — min @ 773184f395e2f83864f91ce1cf1c3c47483432d4

A small but practical concatenative programming language.

workflow updates.
h3rald h3rald@h3rald.com
Mon, 31 Jul 2023 14:22:41 +0200
commit

773184f395e2f83864f91ce1cf1c3c47483432d4

parent

f98ce2ef44c225774d270d026fc0e432774560c7

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

@@ -23,14 +23,14 @@

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 + uses: styfle/cancel-workflow-action@0.9.1 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'}}" + run: echo "os=${{matrix.os == 'ubuntu-latest' && 'linux' || matrix.os == 'macos-latest' && 'macosx' || matrix.os == 'windows-latest' && 'windows'}}" >> $GITHUB_OUTPUT # Checks out the repository - uses: actions/checkout@v2
M .github/workflows/ci.yml.github/workflows/ci.yml

@@ -5,10 +5,8 @@ on:

# Triggers the workflow on push or pull request events but only for the master branch push: branches: [ master ] - tags-ignore: [ '**' ] pull_request: branches: [ master ] - tags-ignore: [ '**' ] # Allows you to run this workflow manually from the Actions tab workflow_dispatch:
M .github/workflows/test.yml.github/workflows/test.yml

@@ -23,14 +23,14 @@

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 + uses: styfle/cancel-workflow-action@0.9.1 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'}}" + run: echo "os=${{matrix.os == 'ubuntu-latest' && 'linux' || matrix.os == 'macos-latest' && 'macosx' || matrix.os == 'windows-latest' && 'windows'}}" >> $GITHUB_OUTPUT # Checks out the repository - uses: actions/checkout@v2