Github Action fix? #816
This file contains hidden or 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: Build coreos-microshift | |
| on: | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: {} | |
| schedule: | |
| - cron: '10 5 * * *' | |
| env: | |
| REGISTRY_USER: aleskandrox | |
| IMAGE_REGISTRY: quay.io | |
| IMAGE_NAME: fedora | |
| REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }} | |
| jobs: | |
| build-coreos-microshift: | |
| if: ${{ github.event_name == 'push' || github.event.workflow_run.conclusion == 'success' }} | |
| runs-on: ubuntu-latest | |
| name: Build and Push Fedora ${{ matrix.variant }} (OS Content) | |
| strategy: | |
| matrix: | |
| variant: | |
| - coreos-microshift | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Set versioned tag | |
| id: versioned-tag | |
| run: | | |
| VERSIONED_TAG=$(date -u --iso-8601=minutes | sed 's/://g;s/+.*$//')-${GITHUB_SHA} | |
| echo "VERSIONED_TAG=${VERSIONED_TAG}" >> $GITHUB_OUTPUT | |
| - name: Buildah configuration | |
| run: | | |
| export STORAGE_DRIVER=overlay | |
| export STORAGE_ROOT=/mnt/containers/storage | |
| sudo mkdir -p "$STORAGE_ROOT" | |
| sudo chown -R "$(id -u):$(id -g)" "$STORAGE_ROOT" | |
| echo "STORAGE_DRIVER=$STORAGE_DRIVER" >> $GITHUB_ENV | |
| echo "STORAGE_ROOT=$STORAGE_ROOT" >> $GITHUB_ENV | |
| df -h | |
| - name: Build OS content | |
| uses: redhat-actions/buildah-build@v2 | |
| id: build-image | |
| with: | |
| image: ${{ env.IMAGE_REGISTRY }}/${{ env.REGISTRY_USER }}/${{ env.IMAGE_NAME }} | |
| oci: true | |
| layers: true | |
| tags: ${{ matrix.variant }}-custom ${{ matrix.variant }}-custom-${{ steps.versioned-tag.outputs.VERSIONED_TAG }} | |
| containerfiles: | | |
| ./os_microshift.Containerfile | |
| - name: Push to registry | |
| uses: redhat-actions/push-to-registry@v2 | |
| with: | |
| tags: >- | |
| ${{ env.IMAGE_REGISTRY }}/${{ env.REGISTRY_USER }}/${{ env.IMAGE_NAME }}:${{ matrix.variant }}-custom | |
| ${{ env.IMAGE_REGISTRY }}/${{ env.REGISTRY_USER }}/${{ env.IMAGE_NAME }}:${{ matrix.variant }}-custom-${{ steps.versioned-tag.outputs.VERSIONED_TAG }} | |
| username: ${{ env.REGISTRY_USER }} | |
| password: ${{ secrets.REGISTRY_PASSWORD }} |