Release #19
Workflow file for this run
This file contains 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: Release | |
on: | |
release: | |
types: [published] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Context (github) | |
run: | | |
cat <<EOF | |
${{toJson(github)}} | |
EOF | |
- uses: actions/checkout@v4 | |
- name: Build container | |
id: build_container | |
uses: ./.github/actions/build | |
with: | |
# We are not going to push the image until we are ready to enable this release | |
# pipeline and disable the circle CI build/push | |
push: true | |
username: ${{ github.actor}} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
node_env: production | |