deps: replace fluent-plugin-oss gem by fluent-plugin-aliyun-oss #18
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
jobs: | |
container-images: | |
name: Container images | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
fluentd: | |
- v1.14 | |
- v1.15 | |
- v1.15-staging | |
- v1.15-ruby3 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Gather metadata | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
ghcr.io/${{ github.repository_owner }}/fluentd | |
flavor: | | |
latest = false | |
tags: | | |
type=raw,value=${{ matrix.fluentd }}-build.${{ github.run_number }} | |
type=raw,value=${{ matrix.fluentd }} | |
- 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: ${{ github.token }} | |
if: github.event_name == 'push' | |
- name: Build | |
uses: docker/build-push-action@v4 | |
with: | |
context: ${{ matrix.fluentd }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
push: false | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |