We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to have a shorter workflow file and skip checkout step when all needed is to just checkout source from current event.
checkout
For example with buildx I can have:
... - name: Build and push Docker image id: build-and-push uses: docker/build-push-action@v2 with: push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} platforms: ${{ inputs.platforms }} labels: ${{ steps.meta.outputs.labels }} file: openshift/system/Dockerfile
With buildah I need to do:
- uses: actions/checkout@v3 - name: Build image id: build-image uses: redhat-actions/buildah-build@v2 ...
Checkout to happen automatically.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
I want to have a shorter workflow file and skip
checkout
step when all needed is to just checkout source from current event.For example with buildx I can have:
With buildah I need to do:
Describe the solution you'd like
Checkout to happen automatically.
The text was updated successfully, but these errors were encountered: