Skip to content

Commit

Permalink
add release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bertt committed Jul 22, 2024
1 parent afb2747 commit 1c2afb6
Showing 1 changed file with 79 additions and 0 deletions.
79 changes: 79 additions & 0 deletions .github/workflows/release.yml
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 }}

0 comments on commit 1c2afb6

Please sign in to comment.