Skip to content

remove visitor badge #13

remove visitor badge

remove visitor badge #13

Workflow file for this run

name: Release
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer
submodules: recursive
- name: Setup Dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.x'
- name: restore dependencies
run: dotnet restore
- name: build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-build --verbosity normal
- name: publish to local
run: dotnet publish src/6pack -c Release --framework net8.0 --no-restore --no-self-contained --output working-temp
- name: version
id: version
run: |
tag=${GITHUB_REF/refs\/tags\//}
version=${tag}
major=${version%%.*}
echo "tag=${tag}" >> $GITHUB_OUTPUT
echo "version=${version}" >> $GITHUB_OUTPUT
echo "major=${major}" >> $GITHUB_OUTPUT
- name: Zip
run: |
cd working-temp
zip -r ../6pack-${{ steps.version.outputs.version}}.zip ./
if: success()
- uses: release-drafter/release-drafter@master
with:
version: ${{ steps.version.outputs.version }}
publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: zip Upload
uses: softprops/action-gh-release@v1
with:
files: |
6pack-${{ steps.version.outputs.version}}.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}