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
Why be forced to do
- name: Setup krankler run: | wget https://github.com/ChristophWurst/krankerl/releases/download/v0.13.0/krankerl chmod +x krankerl - name: Package app run: ./krankerl package
When you could be doing
- name: Package app uses: ChristophWurst/krankerl@v1 with: - command: package
That is 33% less time spend writing ci setups
The text was updated successfully, but these errors were encountered:
plus you can use dependabot to receive bumps to new versions
Sorry, something went wrong.
Maybe also publish as Docker image (on GitHub Container Registry) and reuse that for the GitHub Action? Otherwise https://github.com/actions-rs/cargo/blob/master/src/main.ts looks like a good starting point.
No branches or pull requests
Why be forced to do
When you could be doing
That is 33% less time spend writing ci setups
The text was updated successfully, but these errors were encountered: