Skip to content

Add uv exclude-newer and update lockfile (#1836) #68

Add uv exclude-newer and update lockfile (#1836)

Add uv exclude-newer and update lockfile (#1836) #68

Workflow file for this run

name: Build Container
on:
push:
tags:
- v*
jobs:
build_and_push:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
- name: Login to GitHub Container Registry
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }}
- name: Get tag name
id: get_tag_name
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Build and Push (ibet-wallet)
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
with:
context: .
file: Dockerfile
no-cache: true
push: true
tags: ghcr.io/boostryjp/ibet-wallet-api:${{ steps.get_tag_name.outputs.VERSION }}