Skip to content

workflows: move to pacbrew container (wip) #125

workflows: move to pacbrew container (wip)

workflows: move to pacbrew container (wip) #125

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: PacBrew
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-24.04
container: cpasjuste/pacbrew:latest
defaults:
run:
shell: bash
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
with:
submodules: recursive
# Install ssh key for new package upload to pacbrew repo
# https://zellwk.com/blog/github-actions-deploy
- name: Install main ssh key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.SSH_PRIVATE_KEY }}
known_hosts: '# dummy'
- name: Adding main key to known hosts
run: ssh-keyscan -H ${{ secrets.SSH_HOST }} >> ~/.ssh/known_hosts
# Update pacbrew repo
- name: Update pacbrew repo and packages
run: |
sudo pacman -Syu --noconfirm
# Build pacbrew-packages
- name: Build pacbrew-packages
run: |
cd $GITHUB_WORKSPACE
./pacbrew.sh -u ${{ secrets.SSH_USER }} -h ${{ secrets.SSH_HOST }}