Skip to content

Instantly share code, notes, and snippets.

@maxday
Last active March 22, 2020 20:39
Show Gist options
  • Save maxday/d5de9bbed9e6306bb7bd382dc2ab9249 to your computer and use it in GitHub Desktop.
Save maxday/d5de9bbed9e6306bb7bd382dc2ab9249 to your computer and use it in GitHub Desktop.
dockerize:
runs-on: ubuntu-latest
name: Embed the native executable in a Docker container
needs: native_build
steps:
- name: Checkout the code
uses: actions/checkout@master
- name: Download the binary
uses: actions/download-artifact@v1
with:
name: native-executable
- name: Dockerize
id: dockerize
uses: maxday/quarkus-dockerize-action@master
with:
tag: gcr.io/${{ secrets.GCP_PROJECT }}/${{ secrets.GCP_APP_NAME }}
executablePath: native-executable/app-runner
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment