add - Added printing without color #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push to PPA | |
on: | |
push: | |
tags: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Import GPG | |
uses: crazy-max/ghaction-import-gpg@v6 | |
with: | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
passphrase: ${{ secrets.PASSPHRASE }} | |
- name: Install required packages | |
run: | | |
sudo apt update | |
sudo NEEDRESTART_SUSPEND=1 apt install devscripts debhelper-compat dput build-essential | |
- name: Make original package | |
run: | | |
mv debian .. | |
mv .github .. | |
tar cfv ../bskyid_1.0.0.orig.tar . | |
xz ../bskyid_1.0.0.orig.tar | |
mv ../debian . | |
- name: Build source package | |
run: debuild -S -sa | |
- name: Push to Launchpad | |
run: dput ppa:eofla/bskyid ../bskyid_*_source.changes |