Re-add Dockerfiles to trigger first time ci run #2
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: Electrs | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "electrs/Dockerfile" | |
- "electrs/VERSION" | |
jobs: | |
electrs: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup VERSION | |
run: | | |
export VERSION=$(cat electrs/VERSION) | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
- name: Docker build | |
run: docker build --build-arg VRS=v${VERSION} -f $GITHUB_WORKSPACE/electrs/Dockerfile -t ghcr.io/UnstoppableSwap/containers/electrs:latest -t ghcr.io/UnstoppableSwap/containers/electrs:${VERSION} $GITHUB_WORKSPACE/electrs | |
- name: Docker push to GitHub Packages | |
run: | | |
docker push ghcr.io/UnstoppableSwap/containers/electrs:$VERSION | |
docker push ghcr.io/UnstoppableSwap/containers/electrs:latest |