Bump actions/checkout from 3 to 4 #40
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
# Action Name | |
name: Main Automated Builds | |
# When the Action will Run | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*.*.*' | |
pull_request: | |
# Workflow Jobs | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Step 1 - Checkout Code | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
# Step 2 - Build and Publish | |
- name: Build and Publish | |
uses: ricado-group/dotnet-library-build-release-action@v1 | |
with: | |
project-name: 'RICADO.Unitronics' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
private-nuget-url: 'https://nuget.pkg.github.com/ricado-group/index.json' | |
private-nuget-token: ${{ secrets.GH_PACKAGES_PAT }} | |
public-nuget-token: ${{ secrets.NUGET_APIKEY }} | |
publish-public: true | |
dotnet-version: 7.0.x |