Bump actions/checkout from 4.1.7 to 4.2.0 #271
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Package | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
attestations: write | |
contents: read | |
id-token: write | |
packages: write | |
defaults: | |
run: | |
shell: bash | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_GENERATE_ASPNET_CERTIFICATE: false | |
DOTNET_NOLOGO: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
package: | |
if: github.repository == 'vezel-dev/zig-sdk' | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Clone repository | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Set up .NET | |
uses: actions/[email protected] | |
- name: Set up Node.js | |
uses: actions/[email protected] | |
with: | |
node-version-file: doc/package.json | |
- name: Run Cake | |
run: | | |
./cake upload-core-github | |
- name: Attest packages | |
uses: actions/[email protected] | |
with: | |
subject-path: out/pkg/release/*.nupkg | |
- name: Upload artifacts | |
if: always() | |
uses: actions/[email protected] | |
with: | |
name: ${{ github.workflow }}-${{ github.run_number }}-${{ github.run_attempt }} | |
path: | | |
out/log | |
out/pkg |