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: Monero LWS | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "monero-lws/Dockerfile" | |
- "monero-lws/TAG" | |
jobs: | |
monero-lws: | |
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 TAG | |
run: | | |
export TAG=$(cat monero-lws/TAG) | |
echo "TAG=$TAG" >> $GITHUB_ENV | |
- name: Docker build | |
run: docker build --build-arg TAG=${TAG} -f $GITHUB_WORKSPACE/monero-lws/Dockerfile -t ghcr.io/UnstoppableSwap/containers/monero-lws:monerod-${TAG} -t ghcr.io/UnstoppableSwap/containers/monero-lws:latest $GITHUB_WORKSPACE/monero-lws | |
- name: Docker push to GitHub Packages | |
run: | | |
docker push ghcr.io/UnstoppableSwap/containers/monero-lws:monerod-${TAG} | |
docker push ghcr.io/UnstoppableSwap/containers/monero-lws:latest |