feat: adjust UI to new state flow #212
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: Build docker files | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
- name: Getting image tag | |
uses: actions/github-script@v6 | |
id: get_image_tag | |
with: | |
result-encoding: string | |
script: | | |
return context.payload.ref.replace(/.*\//, ''); | |
- name: Build docker image only | |
run: | | |
# login to ghcr.io | |
docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} | |
# build with full metadata | |
docker build \ | |
--label "org.opencontainers.image.source=https://github.com/${GITHUB_REPOSITORY}" \ | |
--label "org.opencontainers.image.description=Deposit payment example dockerized app" \ | |
--label "org.opencontainers.image.licenses=MIT" \ | |
-t ghcr.io/golemfactory/deposit_example:${{ steps.get_image_tag.outputs.result }} \ | |
--build-arg BACKEND_URL=https://deposit.dev.golem.network \ | |
. |