Skip to content

Update Compress.yml #589

Update Compress.yml

Update Compress.yml #589

Workflow file for this run

name: Compress
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install rar
run: sudo apt-get install rar -y
- name: Compress to File
run: |
rar a -m5 -r -s "Source_code.rar" ./SD_card_root/
- name: Create or Update GitHub Release
uses: softprops/action-gh-release@v1
with:
files: |
"Source_code.rar"
"boot_payload.bin"
tag_name: ${{ github.ref }}
overwrite: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}