Build and Release ISO and docker #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Release ISO and docker | |
on: | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
build_release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: remove full mod flag | |
run: sed -i '/usefullmod/d' makeiso.sh | |
- name: Set SHSHA | |
run: echo "SHSHA="$(echo "${{ github.sha }}"|grep -Eo "^[0-9a-z]{7}"|head -1) >> $GITHUB_ENV | |
- name: Gen sha.txt | |
run: echo "${{ env.SHSHA }}" >sha.txt | |
- name: Set TAG_NAME | |
run: echo "TAG_NAME=""$(date +%Y%m%d)"""-"${{ env.SHSHA }}" >> $GITHUB_ENV | |
- name: build iso | |
run: sh makeiso.sh | |
- name: Set variables | |
run: echo "RE_NOTE=$(cat ./iso/renote.txt | tr -d '[:space:]')" >> $GITHUB_ENV | |
- name: show iso sha256sum | |
run: cat ./iso/renote.txt | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: "./iso" | |
push: true | |
platforms: linux/amd64 | |
tags: sliamb/ppgwiso | |
- name: Upload files to GitHub release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file_glob: true | |
file: ./iso/paopao-gateway*.7z | |
tag: ${{ env.TAG_NAME }} | |
body: ${{ env.RE_NOTE }} | |
- name: Remove old release | |
uses: dev-drprasad/delete-older-releases@v0.3.2 | |
with: | |
keep_latest: 30 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |