Skip to content

Update python Docker tag to v3.14 (#358) #474

Update python Docker tag to v3.14 (#358)

Update python Docker tag to v3.14 (#358) #474

Workflow file for this run

# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [GitHubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_ci --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------
name: ci
on:
push:
branches:
- master
workflow_dispatch:
inputs:
name:
description: "name"
required: false
jobs:
ubuntu-24_04:
name: ubuntu-24_04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v5
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
- name: 'Run: Publish'
run: ./src/build.cmd Publish
env:
name: ${{ github.event.inputs.name }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: 'Publish: win-x64_self-contained.zip'
uses: actions/upload-artifact@v7
with:
name: win-x64_self-contained.zip
path: _output/artifacts/win-x64_self-contained.zip
- name: 'Publish: win-x64_self-contained.zip.sha256'
uses: actions/upload-artifact@v7
with:
name: win-x64_self-contained.zip.sha256
path: _output/artifacts/win-x64_self-contained.zip.sha256
- name: 'Publish: win-x64_framework-dependent.zip'
uses: actions/upload-artifact@v7
with:
name: win-x64_framework-dependent.zip
path: _output/artifacts/win-x64_framework-dependent.zip
- name: 'Publish: win-x64_framework-dependent.zip.sha256'
uses: actions/upload-artifact@v7
with:
name: win-x64_framework-dependent.zip.sha256
path: _output/artifacts/win-x64_framework-dependent.zip.sha256
- name: 'Publish: linux-x64_self-contained.tar.gz'
uses: actions/upload-artifact@v7
with:
name: linux-x64_self-contained.tar.gz
path: _output/artifacts/linux-x64_self-contained.tar.gz
- name: 'Publish: linux-x64_self-contained.tar.gz.sha256'
uses: actions/upload-artifact@v7
with:
name: linux-x64_self-contained.tar.gz.sha256
path: _output/artifacts/linux-x64_self-contained.tar.gz.sha256
- name: 'Publish: linux-x64_framework-dependent.tar.gz'
uses: actions/upload-artifact@v7
with:
name: linux-x64_framework-dependent.tar.gz
path: _output/artifacts/linux-x64_framework-dependent.tar.gz
- name: 'Publish: linux-x64_framework-dependent.tar.gz.sha256'
uses: actions/upload-artifact@v7
with:
name: linux-x64_framework-dependent.tar.gz.sha256
path: _output/artifacts/linux-x64_framework-dependent.tar.gz.sha256