mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-08 11:49:10 +00:00
34 lines
695 B
YAML
34 lines
695 B
YAML
|
name: APT Repository
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
workflow_dispatch:
|
||
|
|
||
|
permissions:
|
||
|
contents: read
|
||
|
pages: write
|
||
|
id-token: write
|
||
|
|
||
|
concurrency:
|
||
|
group: "repos"
|
||
|
cancel-in-progress: false
|
||
|
|
||
|
jobs:
|
||
|
deploy:
|
||
|
environment:
|
||
|
name: github-pages
|
||
|
url: ${{ steps.deployment.outputs.page_url }}
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Setup GitHub pages
|
||
|
uses: actions/configure-pages@v3
|
||
|
- name: Upload repository artifact
|
||
|
uses: actions/upload-pages-artifact@v2
|
||
|
with:
|
||
|
path: './package/dpkg/apt'
|
||
|
- name: Deploy to GitHub pages
|
||
|
id: deployment
|
||
|
uses: actions/deploy-pages@v2
|