Skip to content

Contribution documentation. #12

Contribution documentation.

Contribution documentation. #12

Workflow file for this run

name: AUR CI
on:
push:
branches: [ main ]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: "Build Docker image."
run: docker --debug build -t arch_repo .
- name: "Run the Docker image."
run: docker run --name arch_pkgs arch_repo
- name: "Copy repo to GitHub Actions disk."
run: docker cp arch_pkgs:/home/builduser/x86_64.tgz .
- name: "Extract the repo."
run: |
tar -xvzf x86_64.tgz
mkdir dist
mv x86_64 dist
- name: "Deploy the repo."
uses: JamesIves/github-pages-deploy-action@v4.2.5
with:
branch: gh-pages
folder: dist