update ruby version and install bundler. #40
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
name: pipeline | |
on: | |
schedule: | |
- cron: '40 6 * * *' | |
push: | |
branches: | |
- "*" | |
pull_request: | |
types: [ opened, reopened ] | |
jobs: | |
build: | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
runs-on: ubuntu-latest | |
env: | |
DOCKER_REGISTRY: docker.io | |
ORGANISATION_NAME: aemdesign | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: set envirnment variables | |
id: config | |
run: | | |
source <(curl -sL https://github.com/aem-design/aemdesign-docker/releases/latest/download/github_get_config.sh) | |
source <(curl -sL https://github.com/aem-design/aemdesign-docker/releases/latest/download/github_get_version.sh) | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ env.DOCKER_USERNAME }} | |
password: ${{ env.DOCKER_PASSWORD }} | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and export to Docker | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
platforms: linux/amd64 | |
load: true | |
build-args: | | |
"FILE_NAME=jdk-8u321-linux-x64.tar.gz" | |
tags: | | |
${{ env.IMAGE }}:${{ env.GIT_BRANCH }} | |
ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE }}:${{ env.GIT_BRANCH }} | |
- name: test docker image | |
run: | | |
cd test && bash ./run_tests.sh "ghcr.io/$GITHUB_REPOSITORY_OWNER/$IMAGE:$GIT_BRANCH" | |
- name: Run docker image analysis | |
uses: MaxymVlasov/[email protected] | |
with: | |
image: ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE }}:${{ env.GIT_BRANCH }} | |
config-file: ${{ env.GITHUB_WORKSPACE }}/.dive-ci.yml | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
platforms: linux/amd64 | |
push: true | |
build-args: | | |
"JDK_DRIVEID=${{ env.JDK_DRIVEID }}" | |
tags: | | |
${{ env.IMAGE }}:${{ env.GIT_BRANCH }} | |
ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE }}:${{ env.GIT_BRANCH }} | |
- name: Update Docker Hub Description | |
uses: peter-evans/dockerhub-description@v2 | |
continue-on-error: true | |
with: | |
username: ${{ env.DOCKER_USERNAME }} | |
password: ${{ env.DOCKER_PASSWORD }} | |
repository: peterevans/dockerhub-description | |
- uses: meeDamian/[email protected] | |
if: github.ref == 'refs/heads/master' | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{ env.GITHUB_TAG }} | |
name: ${{ env.GITHUB_TAG }} | |
body: ${{ env.GIT_RELEASE_NOTES }} |