Skip to content

Doc: Update version format in README.md #18

Doc: Update version format in README.md

Doc: Update version format in README.md #18

Workflow file for this run

name: test-action
on:
push:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- "ubuntu-24.04"
- "ubuntu-22.04"
# - "macos-latest"
# - "windows-latest"
version:
- "latest"
- "3.1.0"
name: Test ${{ matrix.version }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2.4.0
- name: Install ${{ matrix.version }}
id: install-b2-cli
uses: sylwit/install-b2-cli-action@main
with:
version: ${{ matrix.version }}
- name: Run b2 version
id: b2_version
run: echo "b2_version=$(b2 version)" >> $GITHUB_OUTPUT
- name: '${{ steps.b2_version.outputs.b2_version }}'
run: echo '${{ steps.b2_version.outputs.b2_version }}'