Skip to content

Commit

Permalink
Create release action
Browse files Browse the repository at this point in the history
  • Loading branch information
Drise13 authored Jul 1, 2024
1 parent 061799a commit ff7f133
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: .NET Release

on:
push:
tags:
- 'v*.*.*' # Matches version tags like v1.0.0

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.x' # Adjust to your .NET version

- name: Restore dependencies
run: dotnet restore

- name: Build
run: dotnet build --configuration Release --no-restore

- name: Publish
run: dotnet publish --configuration Release --output ./publish --no-build

- name: Archive Artifacts
uses: actions/upload-artifact@v2
with:
name: publish
path: ./publish

create_release:
runs-on: ubuntu-latest
needs: build

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Download build artifacts
uses: actions/download-artifact@v2
with:
name: publish

- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./publish
asset_name: PetsOptimizer.zip # Adjust as needed
asset_content_type: application/zip

- name: Compress Artifacts
run: zip -r PetsOptimizer.zip ./publish

0 comments on commit ff7f133

Please sign in to comment.