Skip to content

Commit dd77f13

Browse files
committed
fix: chore
1 parent c5366f3 commit dd77f13

File tree

2 files changed

+17
-15
lines changed

2 files changed

+17
-15
lines changed

.github/workflows/publish-app.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publish Devcontainer to GHCR
1+
name: Publish App to GHCR
22

33
on:
44
push:
@@ -17,18 +17,18 @@ env:
1717
REGISTRY: ghcr.io
1818

1919
jobs:
20-
publish-devcontainer:
20+
publish:
2121
runs-on: ubuntu-latest
2222

2323
permissions:
2424
contents: read
2525
packages: write
2626

2727
steps:
28-
- name: Checkout repository
28+
- name: Checkout Repository
2929
uses: actions/checkout@v6
3030

31-
- name: Set up Docker Buildx
31+
- name: Setup Docker Buildx
3232
uses: docker/setup-buildx-action@v3
3333

3434
- name: Log in to Container Registry
@@ -38,7 +38,7 @@ jobs:
3838
username: ${{ github.actor }}
3939
password: ${{ secrets.GITHUB_TOKEN }}
4040

41-
- name: Extract metadata
41+
- name: Extract Metadata
4242
id: meta
4343
uses: docker/metadata-action@v5
4444
with:
@@ -54,12 +54,12 @@ jobs:
5454
org.opencontainers.image.source=https://github.com/${{ github.repository }}
5555
org.opencontainers.image.vendor=a5chin <[email protected]>
5656
org.opencontainers.image.title=python-uv
57-
org.opencontainers.image.description=Dev Container for Python development with uv-based dependency management and environment configuration.
57+
org.opencontainers.image.description=App for Python development with uv-based dependency management and environment configuration.
5858
org.opencontainers.image.documentation=https://a5chin.github.io/python-uv/
5959
org.opencontainers.image.authors=a5chin <[email protected]>
6060
org.opencontainers.image.licenses=MIT
6161
62-
- name: Build and push devcontainer image
62+
- name: Build and Push App Image
6363
uses: docker/build-push-action@v6
6464
with:
6565
context: .

.github/workflows/publish-devcontainer.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Publish Devcontainer to GHCR
33
on:
44
push:
55
branches: [main]
6+
tags:
7+
- "v*"
68
paths:
79
- ".devcontainer/Dockerfile"
810
- ".github/workflows/publish-devcontainer.yml"
@@ -15,28 +17,28 @@ env:
1517
REGISTRY: ghcr.io
1618

1719
jobs:
18-
publish-devcontainer:
20+
publish:
1921
runs-on: ubuntu-latest
2022

2123
permissions:
2224
contents: read
2325
packages: write
2426

2527
steps:
26-
- name: Checkout repository
28+
- name: Checkout Repository
2729
uses: actions/checkout@v6
2830

29-
- name: Set up Docker Buildx
31+
- name: Setup Docker Buildx
3032
uses: docker/setup-buildx-action@v3
3133

32-
- name: Log in to Container Registry
34+
- name: Login to Container Registry
3335
uses: docker/login-action@v3
3436
with:
3537
registry: ${{ env.REGISTRY }}
3638
username: ${{ github.actor }}
3739
password: ${{ secrets.GITHUB_TOKEN }}
3840

39-
- name: Extract metadata
41+
- name: Extract Metadata
4042
id: meta
4143
uses: docker/metadata-action@v5
4244
with:
@@ -48,16 +50,16 @@ jobs:
4850
type=raw,value=latest,enable={{is_default_branch}}
4951
labels: |
5052
maintainer=a5chin <[email protected]>
51-
org.opencontainers.image.url=https://github.com/a5chin/python-uv
52-
org.opencontainers.image.source=https://github.com/a5chin/python-uv
53+
org.opencontainers.image.url=https://github.com/${{ github.repository }}
54+
org.opencontainers.image.source=https://github.com/${{ github.repository }}
5355
org.opencontainers.image.vendor=a5chin <[email protected]>
5456
org.opencontainers.image.title=python-uv
5557
org.opencontainers.image.description=Dev Container for Python development with uv-based dependency management and environment configuration.
5658
org.opencontainers.image.documentation=https://a5chin.github.io/python-uv/
5759
org.opencontainers.image.authors=a5chin <[email protected]>
5860
org.opencontainers.image.licenses=MIT
5961
60-
- name: Build and push devcontainer image
62+
- name: Build and Push Devcontainer Image
6163
uses: docker/build-push-action@v6
6264
with:
6365
context: .

0 commit comments

Comments
 (0)