also search configuration from ~/.config/resticprofile on macOS (#370) #35
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: Publish snapshot to docker hub | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
goreleaser: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ~1.22 | |
check-latest: true | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Install eget | |
run: go install github.com/zyedidia/eget@latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
version: latest | |
args: release --clean --debug --snapshot --config .goreleaser-snapshot.yml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish to DockerHub | |
run: | | |
docker push creativeprojects/resticprofile:nightly-arm64v8 | |
docker push creativeprojects/resticprofile:nightly-amd64 | |
docker manifest create "creativeprojects/resticprofile:nightly" \ | |
--amend "creativeprojects/resticprofile:nightly-amd64" \ | |
--amend "creativeprojects/resticprofile:nightly-arm64v8" | |
docker manifest inspect "creativeprojects/resticprofile:nightly" | |
docker manifest push "creativeprojects/resticprofile:nightly" | |
shell: bash |