Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/use reusable workflows #99

Merged
merged 2 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 0 additions & 44 deletions .github/workflows/build-push-docker-image.yml

This file was deleted.

56 changes: 5 additions & 51 deletions .github/workflows/build-push-test-docker-image.yml
Original file line number Diff line number Diff line change
@@ -1,57 +1,11 @@
name: build-push-test-docker-image

on:
push:
branches: feature/build-and-publish-test-container
workflow_dispatch:

jobs:
build-push-test-docker-image:
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Build the app
uses: openconext/build-and-publish-test-container/php82-node20@main
with:
use_yarn: true

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set docker labels and tags
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/openconext/stepup-gssp-example/stepup-gssp-example
flavor: |
latest=false
suffix=-test
tags: |
type=ref,event=tag
type=semver,pattern={{version}}
type=sha
type=raw,suffix=,value=test

- name: Build and push the TEST image
uses: docker/build-push-action@v4
with:
context: .
file: docker/Dockerfile.test
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-release-and-push-test-image:
uses: openconext/openconext-githubactions/.github/workflows/build-push-test-docker-image.yml@main
with:
component_name: "Stepup-gssp-example"
use_yarn: true
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: release

on:
push:
tags:
- "*.*.*"

jobs:
build-release-and-push-container:
uses: openconext/openconext-githubactions/.github/workflows/symfony-release.yml@main
with:
component_name: "Stepup-gssp-example"
75 changes: 0 additions & 75 deletions .github/workflows/tag-release.yml

This file was deleted.

2 changes: 1 addition & 1 deletion component_info
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ PHP_VERSION=82
SYMFONY_VERSION=4
ENCORE=yes
ASSETIC=no
NODE_VERSION=14
NODE_VERSION=20
TEST_EXTRA_DIRS="dev/ tests/ ci/"
Loading