Skip to content

updated net10 in artefact and added recent artemismc fabric #23

updated net10 in artefact and added recent artemismc fabric

updated net10 in artefact and added recent artemismc fabric #23

Workflow file for this run

on:
workflow_dispatch:
push:
tags:
- '*'
name: Upload Release
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '10.0.x'
- name: Clone
uses: actions/checkout@v2
- name: Build
run: dotnet publish -c Release src
- name: Upload
uses: actions/upload-artifact@v4
with:
path: src/Artemis.Plugins.Games.Minecraft/bin/x64/Release/net10.0/publish
name: ArtemisMC-Plugin
- name: Zip Artifact
run: |
cd src/Artemis.Plugins.Games.Minecraft/bin/x64/Release/net10.0/publish
ls -l .
zip -r ${{ github.workspace }}/ArtemisMC-Plugin.zip *
- name: Release with Notes
uses: softprops/action-gh-release@v1
with:
files: ArtemisMC-Plugin.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}