build(deps): bump github.com/containers/image/v5 from 5.30.1 to 5.32.2 #713
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: Go | |
on: | |
push: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/vanilla-os/pico:main | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: Install Build Dependencies | |
run: | | |
apt-get update | |
apt-get install -y libbtrfs-dev libdevmapper-dev libgpgme-dev pkg-config build-essential libdpkg-dev | |
- name: Build | |
run: go build -o abrootv2 -ldflags="-X 'main.Version=${{ github.sha }}'" | |
- name: Run Tests | |
run: go test -v ./tests/... | |
- name: Check for Missing Strings | |
uses: vanilla-os/[email protected] | |
- name: Compress Package | |
run: tar -czvf abrootv2.tar.gz abrootv2 | |
- name: Compress Manpage | |
run: tar -czvf abroot-man.tar.gz man/man1/abroot.1 | |
- name: Calculate and Save Checksums | |
run: | | |
sha256sum abrootv2.tar.gz >> checksums.txt | |
sha256sum abroot-man.tar.gz >> checksums.txt | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: abrootv2 | |
path: | | |
abrootv2.tar.gz | |
abroot-man.tar.gz | |
checksums.txt | |
- uses: softprops/action-gh-release@v2 | |
if: github.repository == 'vanilla-os/ABRoot' && github.ref == 'refs/heads/main' | |
with: | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
tag_name: "continuous" | |
prerelease: true | |
name: "Continuous Build" | |
files: | | |
abrootv2.tar.gz | |
abroot-man.tar.gz | |
checksums.txt |