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
Hello,
I want to add Rustle to my CI pipelines. And it would be great to have an official and up-to-date docker image.
Example of image integration to repository packages
.github/workflows/image.yml
name: Publish a docker image on: push: branches: - master tags: - 'v*' release: types: [published] jobs: publish: runs-on: ubuntu-latest permissions: contents: read packages: write steps: - uses: actions/checkout@v3 - uses: docker/login-action@v1 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - uses: docker/metadata-action@v3 id: meta_rustle with: images: ghcr.io/blocksecteam/rustle - uses: docker/build-push-action@v2 with: push: true tags: ${{ steps.meta_rustle.outputs.tags }} labels: ${{ steps.meta_rustle.outputs.labels }}
The text was updated successfully, but these errors were encountered:
Good suggestion. Will consider to add the support after the community test.
Sorry, something went wrong.
Sounds similar to #2, we will release a github action plugin, but building an official docker image is not so urgent.
futuretech6
No branches or pull requests
Hello,
I want to add Rustle to my CI pipelines. And it would be great to have an official and up-to-date docker image.
Example of image integration to repository packages
.github/workflows/image.yml
The text was updated successfully, but these errors were encountered: