Skip to content

Nightly nuget release #2188

Nightly nuget release

Nightly nuget release #2188

name: Nightly nuget release
on:
workflow_dispatch:
schedule:
- cron: '0 1 * * *'
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Wait for actions to finish
uses: softprops/turnstyle@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v6
with:
ref: dev
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup .NET Core
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
include-prerelease: false
- name: Create and publish nuget
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
shell: pwsh
run: |
./build/build.ps1
# Add, commit and push changes
- name: Add & Commit & Push
uses: EndBug/add-and-commit@v10
with:
message: 'Nightly PnP Framework release'
push: true
github_token: ${{ secrets.GITHUB_TOKEN }}