diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml index 5119d5f153..34520508cf 100644 --- a/.github/workflows/binaries.yml +++ b/.github/workflows/binaries.yml @@ -12,8 +12,20 @@ jobs: container: catalinii/minisatip-build-image:latest steps: - uses: actions/checkout@v2 + with: + fetch-depth: '0' - name: Configure ARM run: | ./configure --enable-enigma --enable-static --host=arm-linux-gnueabihf --disable-dvbaes --disable-dvbca make + zip -9 -r /minisatip_arm.zip minisatip html + - name: Bump version and push tag/create release point + uses: anothrNick/github-tag-action@1.17.2 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + WITH_V: true + DEFAULT_BUMP: patch + id: bump_version + +