Update release.yml

This commit is contained in:
Ward Nakchbandi (Cosmic Fusion) 2024-08-07 18:39:03 +03:00 committed by GitHub
parent 0b60e81565
commit 3cd495b945
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,14 +7,14 @@ jobs:
build: build:
runs-on: self-hosted runs-on: self-hosted
container: container:
image: ghcr.io/pikaos-linux/pika-package-container:latest image: ghcr.io/pikaos-linux/pikaos-builder:canaryv3
volumes: volumes:
- /proc:/proc - /proc:/proc
options: --privileged -it options: --privileged -it
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Import GPG key - name: Import GPG key
id: import_gpg id: import_gpg
uses: crazy-max/ghaction-import-gpg@v5 uses: crazy-max/ghaction-import-gpg@v5
@ -29,22 +29,13 @@ jobs:
name: id_rsa name: id_rsa
known_hosts: ${{ secrets.KNOWN_HOSTS }} known_hosts: ${{ secrets.KNOWN_HOSTS }}
if_key_exists: replace if_key_exists: replace
- name: Update apt cache
run: apt-get update -y
- name: Update APT Cache
run: apt-get update -y
- name: Build Package - name: Build Package
run: ./main.sh run: ./main.sh
- name: Release Package - name: Release Package
run: ./release.sh run: ./release.sh
- name: Purge cache
uses: strrife/cloudflare-chunked-purge-action@master
env:
# Zone is required by both authentication methods
CLOUDFLARE_ZONE: ${{ secrets.CLOUDFLARE_ZONE }}
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
PURGE_URLS: ${{ vars.PURGE_URLS }}