This commit is contained in:
parent
d7e9cae7f8
commit
cfc63db4c5
41
.gitea/workflows/build.yml
Normal file
41
.gitea/workflows/build.yml
Normal file
@ -0,0 +1,41 @@
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
env:
|
||||
NUGET_URL: https://git.claremontmakerspace.org/api/packages/${{ github.repository_owner }}/nuget/index.json
|
||||
|
||||
jobs:
|
||||
Build-Chocolatey-Packages:
|
||||
runs-on: ubuntu-latest
|
||||
container: catthehacker/ubuntu:act-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Setup dotnet
|
||||
uses: https://github.com/actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: 7
|
||||
- name: Chocolatey Pack
|
||||
uses: docker://chocolatey/choco:latest
|
||||
with:
|
||||
args: |
|
||||
sh -c 'for package in */
|
||||
do
|
||||
(
|
||||
cd "$package"
|
||||
echo "Packing $package"
|
||||
choco pack --no-color
|
||||
)
|
||||
done'
|
||||
- name: Nuget Push
|
||||
run: |
|
||||
for package in */*.nupkg
|
||||
do
|
||||
echo "Pushing $package"
|
||||
dotnet nuget push --source $NUGET_URL --api-key "${{ secrets.REGISTRY_TOKEN }}" "$package" --skip-duplicate
|
||||
done
|
||||
env:
|
||||
DOTNET_CLI_TELEMETRY_OPTOUT: "true"
|
Loading…
Reference in New Issue
Block a user