diff --git a/README.md b/README.md index 21388b7..9744124 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,8 @@ -# Woodpecker CI Example -Here are some examples for our CI interfacee. The following is a comprehensive list on what is supported to use with it. +# Workflow actions +A repository with a bunch of workflow files for Woodpecker CI and Gitea Actions. -## Basic start off -Below is a basic workflow that echos an output to the log. +## Using them +Using them should be taken with care. Some are used for pushing code, others are for testing purposes. When you use them, you should fill you own information. These are **only** examples. You are allowed to modify them however you please! -```yaml -steps: - testmessage: - image: ubuntu - commands: - - echo "Hello world" - - echo "I run on TTGit" -``` \ No newline at end of file +## Contributing +Anyone is allowed fork this repository. However, if you are wanting to send your own fork, please be sure that you are following our guidelines of contributing. See more on the docs site. \ No newline at end of file diff --git a/generators/jekyll.yml b/generators/jekyll.yml index fd6f1e8..8a2d8f0 100644 --- a/generators/jekyll.yml +++ b/generators/jekyll.yml @@ -10,4 +10,4 @@ steps: image: ubuntu commands: - ls -ltr _site - - echo "TBA" \ No newline at end of file + - echo "Done!" \ No newline at end of file diff --git a/pages/pages.yml b/pages/pages.yml index 9884ec4..9c8e60f 100644 --- a/pages/pages.yml +++ b/pages/pages.yml @@ -1,11 +1,13 @@ steps: pushme: image: ubuntu + secrets: [ gittoken ] commands: - chmod -R a+w . - apt update - apt install -y git wget - - wget https://git.ttnrtsite.me/TTNRT/actions/pages/run.sh + - git remote set-url origin https://$GITTOKEN@git.ttnrtsite.me// + - wget https://git.ttnrtsite.me/TTNRT/actions/raw/branch/main/pages/run.sh - chmod +x run.sh - bash run.sh - echo "Done!" \ No newline at end of file