Sha256: 9266e32dd461c7a68a17a1df5916f63b97b82a90ce2e3fff71478fa65fdd7ac6

Contents?: true

Size: 770 Bytes

Versions: 2

Compression:

Stored size: 770 Bytes

Contents

name: Publish Docker
on:
  push:
    branches: [ "master" ]
jobs:
  build:
    if: github.repository_owner == 'ytti'
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@master
      with:
        fetch-depth: 0
    - name: Get Release Version
      id: get_version
      run: echo "release-version=$(git describe --tags)" >> $GITHUB_OUTPUT
    - name: Set up Docker Buildx
      uses: docker/setup-buildx-action@v3
    - name: Publish to Registry
      uses: elgohr/Publish-Docker-Github-Action@v5
      with:
        name: oxidized/oxidized
        username: ${{ secrets.DOCKER_USERNAME }}
        password: ${{ secrets.DOCKER_PASSWORD }}
        tags: "latest,${{ steps.get_version.outputs.release-version }}"
        platforms: linux/amd64,linux/arm64

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
oxidized-0.30.1 .github/workflows/publishdocker.yml
oxidized-0.30.0 .github/workflows/publishdocker.yml