-
Notifications
You must be signed in to change notification settings - Fork 1
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
Create Dockerfile #2
base: master
Are you sure you want to change the base?
Conversation
Nice work, you committed a ENTRYPOINT ["/entrypoint.sh"] The Step 2: Add the action's scriptAn entrypoint script must exist in our repository so that Docker has something to execute. ⌨️ Activity: Add an entrypoint script and commit it to your branch
I'll respond when I detect a new commit on this branch. |
Almost there! Your script is present, but it's not executable. ⌨️ Activity: Make your script executableAssuming you've only worked on the web UI, and not locally until now, follow these instructions to make the script executable:
When I detect your new commit, I'll respond in this pull request. |
Nice work adding the Next, we'll define a workflow that uses the GitHub Action. Workflow FilesWorkflows are defined in special files in the Each workflow file is comprised of blocks, like workflow blocks and action blocks. For this example, we'll need one of each. The workflow blockWorkflow blocks execute anytime code is pushed to your repository, using the We'll break down each line of the workflow block in the next step. Step 3: Add a
|
Nice work! 🎉 You added a workflow block to your workflow file! Here's what it means:
Next, we need to specify what action is going to be executed. The action blockWe've referenced the We'll add the block now, and break it down in the next step. Step 4: Add an
|
You added a workflow block! Here are some important details about why each part of the block exists and what each part does.
Your action is about to be triggered!Your repository now contains everything it needs for the action to be defined (in the The action will run anytime a commit is recognized on the remote repository. Since you just pushed, let's wait for the workflow to be triggered. This might take a few minutes since it's the first time running in this repository. Seeing your Action in ActionYou can see the action status reported below, or you can click the "Actions" tab in your repository. From there you will see the actions that have run, and you can click on the action's "Log" link to view details. Step 5: Trigger the workflow⌨️ Activity: See your action trigger the workflow
I will respond when I detect your action has run and reported a status.
|
No description provided.