Bump actions/upload-artifact from 4.3.3 to 4.3.4 #59
Workflow file for this run
This file contains 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: 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/[email protected] | |
with: | |
name: osxbom-gzipped_tarfile-${{ matrix.compiler }}-${{ matrix.os }} | |
path: osxbom-0.0.*.tar.gz | |
- name: Upload another Build Artifact | |
uses: actions/[email protected] | |
with: | |
name: osxbom-zipfile-${{ matrix.compiler }}-${{ matrix.os }} | |
path: osxbom-0.0.*.zip | |
strategy: | |
matrix: | |
compiler: | |
- clang | |
- gcc | |
os: | |
- ubuntu-latest | |
- macos-latest |