Build tgfocus-gittag-x64-linux-gnu #38
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-tgfocus-gittag-x64-linux-gnu | |
run-name: Build tgfocus-gittag-x64-linux-gnu | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
job1: | |
if: contains(github.event.head_commit.message, 'build-tgfocus-gittag-x64-linux-gnu') == true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: master | |
- name: Set env | |
run: echo "CURR_DATE=$(date +'%Y%m%d')" >> "$GITHUB_ENV" | |
- name: Set env | |
run: echo "PICK_TAG=$(cat tgfocus-gittag)-x64-linux-gnu" >> "$GITHUB_ENV" | |
- name: Set env | |
run: echo "APP_NAME=tg-focus" >> "$GITHUB_ENV" | |
- name: Install Deps | |
run: sudo apt-get update && sudo apt-get install podman buildah -y | |
- run: df -h | |
- name: Build | |
run: bash tgfocus-gittag-x64-linux-gnu.bash | |
- run: buildah ps | |
- run: df -h | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ env.APP_NAME }}-${{ env.PICK_TAG }}.tar.gz | |
path: ${{ env.APP_NAME }}-${{ env.PICK_TAG }}.tar.gz | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: CHECKSUMS | |
path: CHECKSUMS |