-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8612 from weseek/master
Release v7.0.0
- Loading branch information
Showing
1,173 changed files
with
30,825 additions
and
39,374 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
name: Release Docker Images for RC (for dev/7.0.x) | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev/7.0.x | ||
|
||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
|
||
jobs: | ||
|
||
determine-tags: | ||
runs-on: ubuntu-latest | ||
|
||
outputs: | ||
TAGS: ${{ steps.meta.outputs.tags }} | ||
TAGS_GHCR: ${{ steps.meta-ghcr.outputs.tags }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Retrieve information from package.json | ||
uses: myrotvorets/info-from-package-json-action@1.2.0 | ||
id: package-json | ||
|
||
- name: Docker meta for docker.io | ||
uses: docker/metadata-action@v4 | ||
id: meta | ||
with: | ||
images: docker.io/weseek/growi | ||
sep-tags: ',' | ||
tags: | | ||
type=raw,value=${{ steps.package-json.outputs.packageVersion }}.{{sha}} | ||
- name: Docker meta for ghcr.io | ||
uses: docker/metadata-action@v4 | ||
id: meta-ghcr | ||
with: | ||
images: ghcr.io/weseek/growi | ||
sep-tags: ',' | ||
tags: | | ||
type=raw,value=${{ steps.package-json.outputs.packageVersion }}.{{sha}} | ||
build-image-rc: | ||
uses: weseek/growi/.github/workflows/reusable-app-build-image.yml@master | ||
with: | ||
image-name: weseek/growi | ||
tag-temporary: latest-rc | ||
secrets: | ||
AWS_ROLE_TO_ASSUME_FOR_OIDC: ${{ secrets.AWS_ROLE_TO_ASSUME_FOR_OIDC }} | ||
|
||
|
||
publish-image-rc: | ||
needs: [determine-tags, build-image-rc] | ||
|
||
uses: weseek/growi/.github/workflows/reusable-app-create-manifests.yml@master | ||
with: | ||
tags: ${{ needs.determine-tags.outputs.TAGS }} | ||
registry: docker.io | ||
image-name: weseek/growi | ||
tag-temporary: latest-rc | ||
secrets: | ||
DOCKER_REGISTRY_PASSWORD: ${{ secrets.DOCKER_REGISTRY_PASSWORD }} | ||
|
||
publish-image-rc-ghcr: | ||
needs: [determine-tags, build-image-rc] | ||
|
||
uses: weseek/growi/.github/workflows/reusable-app-create-manifests.yml@master | ||
with: | ||
tags: ${{ needs.determine-tags.outputs.TAGS_GHCR }} | ||
registry: ghcr.io | ||
image-name: weseek/growi | ||
tag-temporary: latest-rc | ||
secrets: | ||
DOCKER_REGISTRY_PASSWORD: ${{ secrets.DOCKER_REGISTRY_ON_GITHUB_PASSWORD }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.