Skip to content

Re-add Dockerfiles to trigger first time ci run #2

Re-add Dockerfiles to trigger first time ci run

Re-add Dockerfiles to trigger first time ci run #2

Workflow file for this run

name: Bitcoin Core
on:
push:
branches: [main]
paths:
- "bitcoin-core/Dockerfile"
- "bitcoin-core/VERSION"
jobs:
bitcoin-core:
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 bitcoin-core/VERSION)
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Docker build
run: docker build --build-arg VRS=${VERSION} -f $GITHUB_WORKSPACE/bitcoin-core/Dockerfile -t ghcr.io/UnstoppableSwap/containers/bitcoin-core:latest -t ghcr.io/UnstoppableSwap/containers/bitcoin-core:${VERSION} $GITHUB_WORKSPACE/bitcoin-core
- name: Docker push to GitHub Packages
run: |
docker push ghcr.io/UnstoppableSwap/containers/bitcoin-core:$VERSION
docker push ghcr.io/UnstoppableSwap/containers/bitcoin-core:latest