Skip to content

Commit

Permalink
ci/cd: created commit artifact build check
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMysterius authored Aug 28, 2024
1 parent ceaa34b commit bcd0a13
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: "Build"
on:
push:

jobs:
build:
name: Build
runs-on: ubuntu-latest

permissions:
id-token: write
contents: read

steps:
- name: Clone repository
uses: actions/checkout@v3

- name: Install Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x

- name: Build step
run: "deno task build"

- uses: actions/upload-artifact@master
with:
name: windows-executable
path: build/mangasee-dl.exe

- uses: actions/upload-artifact@master
with:
name: linux-executable
path: build/mangasee-dl

0 comments on commit bcd0a13

Please sign in to comment.