Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
cashmeresamurai committed Jun 27, 2024
1 parent 39391b2 commit a8a302a
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@

name: Build and Release for macOS

on:
push:
tags:
- 'v*.*.*' # Läuft bei jedem Push eines Tags, das wie eine Versionsnummer aussieht

jobs:
build:
runs-on: macos-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true

- name: Build project
run: cargo build --release

- name: Upload release asset
uses: actions/upload-artifact@v2
with:
name: cuteboard
path: target/release/cuteboard

release:
needs: build
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Download artifact
uses: actions/download-artifact@v2
with:
name: cuteboard

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: cuteboard
asset_name: cuteboard
asset_content_type: application/octet-stream

0 comments on commit a8a302a

Please sign in to comment.