-
-
Notifications
You must be signed in to change notification settings - Fork 4
35 lines (30 loc) · 814 Bytes
/
delete.yml
File metadata and controls
35 lines (30 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
name: Cleanup repos
on:
workflow_dispatch:
jobs:
Cleanup:
runs-on: ubuntu-latest
steps:
- name: 'Get the key'
run: wget https://raw.githubusercontent.com/AdityaGarg8/t2-ubuntu-repo/refs/heads/main/KEY.gpg
- name: Release
uses: softprops/action-gh-release@v2
with:
files: |
${{ github.workspace }}/KEY.gpg
tag_name: debian
body: Apt repo
draft: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Release
uses: softprops/action-gh-release@v2
with:
files: |
${{ github.workspace }}/KEY.gpg
tag_name: archlinux
body: Pacman repo
draft: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}