mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 04:09:09 +00:00
chore(actions): apt deployment action
This commit is contained in:
parent
46c80c8818
commit
6f2b0a2772
1 changed files with 33 additions and 0 deletions
33
.github/workflows/apt.yml
vendored
Normal file
33
.github/workflows/apt.yml
vendored
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
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
|
Loading…
Reference in a new issue