Skip to content

bump version number for a new release #55

bump version number for a new release

bump version number for a new release #55

Workflow file for this run

name: cooljeanius/osxbom
on:
push:
branches:
- "**/*"
tags:
- "0.0.*"
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
steps:
- name: checkout
uses: actions/checkout@v4
# # 'Transformers::TravisCI::Scripts::Dependencies' dependencies are currently unsupported
# # 'compiler' was not transformed because there is no suitable equivalent in GitHub Actions
- run: "./configure CC=${{ matrix.compiler }} && make && make check && make distcheck"
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4.3.3
with:
name: osxbom-gzipped_tarfile-${{ matrix.compiler }}-${{ matrix.os }}
path: osxbom-0.0.*.tar.gz
- name: Upload another Build Artifact
uses: actions/upload-artifact@v4.3.3
with:
name: osxbom-zipfile-${{ matrix.compiler }}-${{ matrix.os }}
path: osxbom-0.0.*.zip
strategy:
matrix:
compiler:
- clang
- gcc
os:
- ubuntu-latest
- macos-latest