-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #187 from NonsoAmadi10/ch-faraday-image-docker-hub
chore: adds github actions to push faraday docker images to docker hub
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Docker image build | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
main: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up QEMU | ||
uses: lightninglabs/gh-actions/[email protected] | ||
|
||
- name: Set up Docker buildx | ||
uses: lightninglabs/gh-actions/[email protected] | ||
|
||
- name: Login to DockerHub | ||
uses: lightninglabs/gh-actions/[email protected] | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_API_KEY }} | ||
|
||
- name: Set env | ||
run: | | ||
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | ||
DOCKER_REPO_DEFAULT=${{secrets.DOCKER_REPO}} | ||
echo "DOCKER_REPO=${DOCKER_REPO_DEFAULT:-lightninglabs/faraday}" >> $GITHUB_ENV | ||
- name: Build and push image | ||
id: docker_build | ||
uses: lightninglabs/gh-actions/[email protected] | ||
with: | ||
push: true | ||
platforms: linux/amd64,linux/arm64 | ||
tags: "${{ env.DOCKER_REPO }}:${{ env.RELEASE_VERSION }}" | ||
build-args: checkout=${{ env.RELEASE_VERSION }} | ||
|
||
- name: Image digest | ||
run: echo ${{ steps.docker_build.outputs.digest }} |