Skip to content
New issue

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

Fix accidental interpretation by liquid #95

Merged
merged 1 commit into from
Jan 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions _episodes/09-bonus-episode.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ To do so, one needs to use GitHub CI/CD. A step-by-step guide is presented here.
* **Step 4**: Copy-paste the content above and add to the Singularity file. (In principle it is possible to build this image locally, but we will not do that here, as we wish to build it with GitHub CI/CD).
* **Step 5**: In the `singularity-build-deploy.yml` file, add the following content:

{% raw %}
```text
name: Singularity Build Deploy

Expand Down Expand Up @@ -95,6 +96,7 @@ jobs:
echo ${{ secrets.GITHUB_TOKEN }} | singularity remote login -u ${{ secrets.GHCR_USERNAME }} --password-stdin oras://ghcr.io
singularity push container.sif oras://ghcr.io/${GITHUB_REPOSITORY}:${tag}
```
{% endraw %}

The above script is designed to build and publish a Singularity image with [GitHub packages](https://github.com/features/packages).

Expand Down