diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a12f280..c1ab868 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,11 +7,10 @@ on: - "main" jobs: - pre-release: + release: name: "Release" runs-on: "ubuntu-22.04" - steps: - name: Install dependencies (apk) run: sudo apt update && sudo apt-get install -y git python3 py3-pip zlib python3-pillow @@ -24,7 +23,7 @@ jobs: run: mkdir -p /tmp/pinecil && mkdir -p /tmp/miniware - name: build all files for the device - #run: cd Bootup\ Logos && ./run.sh /tmp/pinecil/ -p && ./run.sh /tmp/miniware/ -m + run: cd Bootup\ Logos && ./run.sh /tmp/pinecil/ -p && ./run.sh /tmp/miniware/ -m - name: build logo erase file run: cd Bootup\ Logos && python3 img2logo.py -E erase_stored_image /tmp/pinecil/ -p && python3 img2logo.py -E erase_stored_image /tmp/miniware/ -m @@ -32,8 +31,6 @@ jobs: - name: compress logo files run: zip -r pinecil.zip /tmp/pinecil/* && zip -r miniware.zip /tmp/miniware/* - - - uses: "marvinpinto/action-automatic-releases@latest" with: repo_token: "${{ secrets.GITHUB_TOKEN }}"