Skip to content

Commit

Permalink
Create blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sulincix authored Oct 31, 2023
1 parent 5d5c4a6 commit e56d498
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI

on:
push:
branches: [ master ]

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Building deb package
run: |
sudo apt update
sudo apt install devscripts equivs -y
sudo mk-build-deps --install
sudo debuild -us -uc -b
sudo mkdir -p /output/
sudo mv ../*.deb /output/
sudo mv ./*.deb /output/
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "current"
prerelease: false
title: "Latest release"
files: |
/output/*

0 comments on commit e56d498

Please sign in to comment.