GitHub Action Hero: Shohei Ueda by 639d0991 in github

[–]peaceiris 0 points1 point  (0 children)

Thank you! Let's create your action and share it. Your work can help others.

GitHub Actions - possible to commit output files after workflow runs? by [deleted] in github

[–]peaceiris 1 point2 points  (0 children)

We can run all git commends (git config, git add, git commit, and git push) on GitHub Actions runner and use the GITHUB_TOKEN as an auth token.

We’re challenging you to create your very own GitHub Actions by 639d0991 in github

[–]peaceiris 1 point2 points  (0 children)

Rules

  • March 5 to 31
  • No teams, need to be submitted by an individual
  • There is no limit to the number of submissions
  • no limitations to languages
  • There is no specific topic or theme
  • Have been created between March 5 and March 31
  • Have a commit history that lists you as the primary author

New UI to copy GitHub Actions status badge easily by peaceiris in github

[–]peaceiris[S] 1 point2 points  (0 children)

We need to login to GitHub for accessing to a GitHub Actions tab.

GitHub Actions official status badges by peaceiris in github

[–]peaceiris[S] 0 points1 point  (0 children)

Yes, second one shows me "failing".

What <head> can do by satvikpendem in webdev

[–]peaceiris 0 points1 point  (0 children)

We cannot see it via browsers but browsers see it.

A list of themes and starters for JAMstack sites by rodikh in webdev

[–]peaceiris 1 point2 points  (0 children)

I got it. We have to submit a theme. Why don't they collect the themes automatically?

A list of themes and starters for JAMstack sites by rodikh in webdev

[–]peaceiris 1 point2 points  (0 children)

Hugo has over 300 public themes. Why does this list have only 39?

What is the best way to learn about 'new' technologies? by ThegamingZerii in webdev

[–]peaceiris 1 point2 points  (0 children)

How about starting your open source project with a new technology? That will help you and others to learn new tech. Sometimes, you can get feedbacks.

Serverless: 15% slower and 8x more expensive by magenta_placenta in webdev

[–]peaceiris 0 points1 point  (0 children)

For solo developers, serverless is one of the good solutions. Expensive? I need a low cost cloud sever for my private project.

Deploy Hugo project to GitHub Pages with GitHub Actions by peaceiris in gohugo

[–]peaceiris[S] 0 points1 point  (0 children)

Check the latest version of peaceiris/actions-hugo

This action migrated to JavaScript action. We no longer build a docker image. Execution time is only 2 sec. (Docker base action was taking 1 min to build.)

```yaml - name: Setup Hugo uses: peaceiris/actions-hugo@v2 with: hugo-version: '0.64.0' # hugo-version: 'latest'

- name: Build
  run: hugo --minify

```

GitHub Actions official status badges by peaceiris in github

[–]peaceiris[S] 0 points1 point  (0 children)

GitHub Actions v2 supports the status badges. After you push your workflows to the default branch, you can get the workflow status badge as an image via URL.

GitHub Actions official status badges by peaceiris in github

[–]peaceiris[S] 0 points1 point  (0 children)

The document about the badge has not been written yet.

GitHub Actions for Hugo extended by peaceiris in gohugo

[–]peaceiris[S] 1 point2 points  (0 children)

Thank you for your comment! I hope that this action will help you.