Skip to content

Commit 5c5b12c

Browse files
authored
Merge branch 'main' into add-step-summary
2 parents 87b86d7 + ebc5e80 commit 5c5b12c

15 files changed

+170
-327
lines changed

.github/banner.png

971 KB
Loading

.github/configs/draft-release.yml

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

.github/settings.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Upstream changes from _extends are only recognized when modifications are made to this file in the default branch.
2+
_extends: .github
3+
repository:
4+
name: github-action-docker-build-push
5+
description: Simple docker build action
6+
homepage: https://cloudposse.com/accelerate
7+
topics: ""
8+

.github/workflows/auto-readme.yml

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

.github/workflows/branch.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Branch
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
- release/**
7+
types: [opened, synchronize, reopened]
8+
push:
9+
branches:
10+
- main
11+
- release/v*
12+
paths-ignore:
13+
- '.github/**'
14+
- 'docs/**'
15+
- 'examples/**'
16+
- 'test/**'
17+
- 'README.md'
18+
19+
permissions:
20+
contents: write
21+
actions: write
22+
23+
jobs:
24+
github-action:
25+
uses: cloudposse/.github/.github/workflows/shared-github-action.yml@main
26+
secrets: inherit

.github/workflows/feature-branch.yml

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

.github/workflows/main-branch.yaml

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

.github/workflows/release.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Release
2+
on:
3+
release:
4+
types: [published]
5+
6+
permissions:
7+
id-token: write
8+
contents: write
9+
pull-requests: write
10+
11+
jobs:
12+
github-action:
13+
uses: cloudposse/.github/.github/workflows/shared-release-branches.yml@main
14+
secrets: inherit

.github/workflows/test-docker-build-complex.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ jobs:
3434
build-args: |
3535
TEST_ARG=test_value
3636
SECOND_ARG=two
37+
tags: |
38+
type=sha,format=long,suffix=-complex,priority=1002
3739
3840
- uses: nick-fields/assert-action@v2
3941
with:
@@ -42,7 +44,7 @@ jobs:
4244

4345
- uses: nick-fields/assert-action@v2
4446
with:
45-
expected: sha-${{ github.sha }}
47+
expected: sha-${{ github.sha }}-complex
4648
actual: ${{ steps.current.outputs.tag }}
4749

4850
teardown:

.github/workflows/test-docker-build-multi-platform.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
login: ${{ secrets.DOCKERHUB_USERNAME }}
3333
password: ${{ secrets.DOCKERHUB_PASSWORD }}
3434
platforms: linux/amd64,linux/arm64
35+
tags: |
36+
type=sha,format=long,suffix=-multi-platform,priority=1002
3537
3638
- name: Inspect Image
3739
id: inspect
@@ -48,7 +50,7 @@ jobs:
4850

4951
- uses: nick-fields/assert-action@v2
5052
with:
51-
expected: sha-${{ github.sha }}
53+
expected: sha-${{ github.sha }}-multi-platform
5254
actual: ${{ steps.current.outputs.tag }}
5355

5456
- uses: nick-fields/assert-action@v2

0 commit comments

Comments
 (0)