Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
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
8 changes: 5 additions & 3 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -272,16 +272,18 @@ steps:
# We validate
# - type: gate

# Step 11: Create the Docker image and push it to GPR

# Step 11: Create the Docker image and push it to GitHub Packages


# We tell the user to write the proper steps for the workflow
- type: respond
with: 11_workflow-steps.md

# event: commit, user writes the steps for the workflow, using recommended existing GitHub steps

- title: Create the Docker image and push it to GPR
description: Add a step to the workflow for building and pushing a Docker image to GPR.
- title: Create the Docker image and push it to GitHub Packages
description: Add a step to the workflow for building and pushing a Docker image to GitHub Packages.
event: pull_request
link: '{{ repoUrl }}/pull/3'
actions:
Expand Down
4 changes: 2 additions & 2 deletions responses/11_workflow-steps.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Workflow steps

We'll add a final section to our production workflow that packages up our application in a Docker container and publishes it to the GitHub Package Registry (GPR). This step is important for the traceability of your deployed artifacts.
We'll add a final section to our production workflow that packages up our application in a Docker container and publishes it to GitHub Packages. This step is important for the traceability of your deployed artifacts.

We'll only use one new action here created by a GitHubber, which allows us to push a container to GPR.
We'll only use one new action here created by a GitHubber, which allows us to push a container to GitHub Packages.
- `mattdavis0351/actions/docker-gpr`

All of this happens automatically once a pull request is merged!
Expand Down
2 changes: 1 addition & 1 deletion responses/12_congratulations.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Nice work!

Now, we just have to wait for the deployment to occur, and for the package to be published to GPR. When it's completed, you should be able to see it in the [Packages]({{ repoUrl }}/packages) section of your repository. You can get the deployment URL in the [Actions]({{ repoUrl }}/actions) log, just like the staging URL.
Now, we just have to wait for the deployment to occur, and for the package to be published to GitHub Packages. When it's completed, you should be able to see it in the [Packages]({{ repoUrl }}/packages) section of your repository. You can get the deployment URL in the [Actions]({{ repoUrl }}/actions) log, just like the staging URL.

![celebrate](https://octodex.github.com/images/jetpacktocat.png)

Expand Down