Skip to content

Commit 77fdcaf

Browse files
committed
fix: remove stable sections
1 parent 14eccde commit 77fdcaf

File tree

2 files changed

+1
-53
lines changed

2 files changed

+1
-53
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,8 @@ jobs:
3434
tags: |
3535
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
3636
type=ref,event=tag
37-
type=ref,event=pr
38-
39-
- name: Extract metadata (tags, labels) for Docker (Stable)
40-
id: meta-stable
41-
uses: docker/metadata-action@v5
42-
with:
43-
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
44-
tags: |
4537
type=raw,value=stable,enable=${{ startsWith(github.ref, 'refs/tags/') }}
38+
type=ref,event=tag
4639
type=ref,event=pr
4740
4841
- name: Show tags
@@ -51,10 +44,6 @@ jobs:
5144
for tag in ${{ steps.meta.output.tags }}; do
5245
echo $tag
5346
done
54-
echo "Tags generated by metadata-stable-action:\n"
55-
for tag in ${{ steps.meta-stable.output.tags }}; do
56-
echo $tag
57-
done
5847
5948
- name: Extract version from tag
6049
if: startsWith(github.ref, 'refs/tags/')
@@ -79,18 +68,6 @@ jobs:
7968
build-args: |
8069
BASE_APE_IMAGE_TAG=stable
8170
82-
- name: Build and push stable
83-
if: ${{ github.event_name != 'pull_request' }}
84-
uses: docker/build-push-action@v4
85-
with:
86-
context: .
87-
file: ./Dockerfile.stable
88-
push: ${{ github.event_name != 'pull_request' }}
89-
tags: ${{ steps.meta-stable.outputs.tags }}
90-
labels: ${{ steps.meta-stable.outputs.labels }}
91-
build-args: |
92-
BASE_APE_IMAGE_TAG=stable
93-
9471
- name: Fetch all tags and store them
9572
run: |
9673
# List all tags

Dockerfile.stable

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)