Organization index and show #7291
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: Docker | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- oidc-api-tokens | |
permissions: | |
contents: read | |
id-token: write | |
jobs: | |
build: | |
name: Docker build (and optional push) | |
runs-on: ubuntu-24.04 | |
env: | |
RUBYGEMS_VERSION: "3.5.20" | |
RUBY_VERSION: "3.3.5" | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # master | |
- name: Cache Docker layers | |
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-rubygems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-rubygems-org | |
- name: Install and start services (needed for image test) | |
run: docker compose up -d | |
- name: Configure AWS credentials from Production account | |
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2 | |
if: github.secret_source != 'None' | |
with: | |
role-to-assume: arn:aws:iam::048268392960:role/rubygems-ecr-pusher | |
aws-region: us-west-2 | |
- name: Login to Amazon ECR | |
if: github.secret_source != 'None' | |
uses: aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v2.0.1 | |
- name: build, test and optionally push docker image | |
run: ./script/build_docker.sh | |
env: | |
BUNDLE_PACKAGER__DEV: ${{ secrets.BUNDLE_PACKAGER__DEV }} | |
# Temp fix | |
# https://github.com/docker/build-push-action/issues/252 | |
# https://github.com/moby/buildkit/issues/1896 | |
- name: Move cache | |
run: | | |
rm -rf /tmp/.buildx-cache | |
mv /tmp/.buildx-cache-new /tmp/.buildx-cache |