Ci_build Update
Broken Builds
Usually its in the .css/.scss file where my build breaks. i was porting some old code from BubblegumPop, a repo my friend an spouse uses to do something with her girlfriends when social media breaks… Now im being asked for new functionality bc actions/upload-artifact@v4 or later
is not present. I had to add to the Buildfile and now the site and 3 other sites are not complaining and accepting new MarkDown and MarkUp i shared a cheetsheet below .
Artifacts allow you to share data between jobs in a workflow and store data once that workflow has completed.
About workflow artifacts
Found 0 artifact(s)
##[debug]List artifact count: 0
Error: Fetching artifact metadata failed. Is githubstatus.com reporting issues with API requests, Pages, or Actions? Please re-run the deployment at a later time.
Error: Error: No artifacts named "github-pages" were found for this workflow run. Ensure artifacts are uploaded with actions/upload-artifact@v4 or later.
at getArtifactMetadata (/home/runner/work/_actions/actions/deploy-pages/v4/src/internal/api-client.js:85:1)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at Deployment.create (/home/runner/work/_actions/actions/deploy-pages/v4/src/internal/deployment.js:66:1)
at main (/home/runner/work/_actions/actions/deploy-pages/v4/src/index.js:30:1)
Error: Error: No artifacts named "github-pages" were found for this workflow run. Ensure artifacts are uploaded with actions/upload-artifact@v4 or later.
##[debug]Node Action run completed with exit code 1
##[debug]Finishing: Deploy to GitHub Pages
Like a pussy i turned off linting. The linter uses markdownlint as the framework to perform checks, report flaws, and automatically fix content, when possible.
It was really helping me grow as an HTML PRogrammer some argue its not a Programming Language theres just different types and HTNL is a Markup Language. From my understanding at this point MarkDown is just a collapesed subset that reducses the steps to publish text to device. Like theres no KramDown object or Video without knowing LiquiD
Embedding videos #91 [KramDown User 2014]
I haven't been able to insert a video so far. I'm using:
<iframe src="https://www.youtube.com/watch?v=MU9sobaVx6I" width="560" height="315" frameborder="0"> </iframe>
Is HTML a programming language? - theserverside.com
The Build File
Here is the old Build file and the added and updated file is belo, i embedded a gist to see if my browser will throw that 200error
on:
push:
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
name: script/cibuild
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.0
bundler-cache: true
- name: build
run: script/bootstrap
- name: test
run: script/cibuild
updated
on:
push:
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
name: script/cibuild
steps:
- uses: actions/checkout@v4
uses: actions/jekyll-build-pages@v1
with:
source: ./
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
bundler-cache: true
- name: build
run: script/bootstrap
- name: test
run: script/cibuild
# Deployment job
deploy:
environment:
name: github-pages
url: $
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
MArkDown-QuickFacts
Basic writing and formatting syntax
Create sophisticated formatting for your prose and code on GitHub with simple syntax.
A first-level heading
A second-level heading
A third-level heading
Example headings
Sample Section
This’ll be a Helpful Section About the Greek Letter Θ!
A heading containing characters not allowed in fragments, UTF-8 characters, two consecutive spaces between the first and second words, and formatting.
This heading is not unique in the file
TEXT 1
This heading is not unique in the file
TEXT 2
Links to the example headings above
Link to the sample section: Link Text.
Link to the helpful section: Link Text.
Link to the first non-unique section: Link Text.
Link to the second non-unique section: Link Text.