-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
79 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: Publish | ||
|
||
permissions: | ||
contents: write | ||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Build | ||
run: echo ${{ github.sha }} > Release.txt | ||
- name: Test | ||
run: cat Release.txt | ||
|
||
- name: Build and publish | ||
run: | | ||
architectures=(win-x64 osx-x64 linux-x64 win-arm64 osx-arm64 linux-arm64) | ||
for arch in "${architectures[@]}"; do | ||
dotnet publish src -c Release -r "$arch" /p:PublishSingleFile=true | ||
cd src/bin/Release/net8.0/"$arch"/publish | ||
zip -r ../../../../../../i3dm.export-"$arch".zip * | ||
cd ../../../../../.. | ||
done | ||
- name: Release | ||
uses: softprops/action-gh-release@v1 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: | | ||
Release.txt | ||
i3dm.export-win-x64.zip | ||
i3dm.export-win-arm64.zip | ||
i3dm.export-osx-x64.zip | ||
i3dm.export-osx-arm64.zip | ||
i3dm.export-linux-x64.zip | ||
i3dm.export-linux-arm64.zip | ||
- name: Get tag | ||
id: tag | ||
uses: dawidd6/action-get-tag@v1 | ||
with: | ||
strip_v: true | ||
|
||
- name: Pack | ||
working-directory: src | ||
run: | | ||
dotnet build i3dm.export.csproj --configuration Release | ||
dotnet pack i3dm.export.csproj --configuration Release -p:PackAsTool=true --output ./nupkg | ||
- name: Publish to NuGet | ||
working-directory: src | ||
env: | ||
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} | ||
run: dotnet nuget push ./nupkg/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json | ||
|
||
- name: Log in to Docker Hub | ||
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Publish | ||
run: | | ||
docker build ./src --file Dockerfile --tag geodan/i3dm.export:latest | ||
docker push geodan/i3dm.export:latest | ||
docker tag geodan/i3dm.export:latest geodan/i3dm.export:${{ steps.tag.outputs.tag }} | ||
docker push geodan/i3dm.export:${{ steps.tag.outputs.tag }} | ||