Update blank.yml

This commit is contained in:
ottop 2024-08-11 23:59:36 +03:00 committed by GitHub
commit d822a21776
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,39 +1,19 @@
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
# Sync repo to the Codeberg mirror
name: Repo sync GitHub -> Codeberg
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
branches:
- '**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
codeberg:
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hello, world!
# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.
- name: mirror-repository
uses: yesolutions/mirror-action@v0.7.0
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: yesolutions/mirror-action@master
with:
REMOTE: "https://codeberg.org/ottoptj/yamlauncher.git"
GIT_USERNAME: ottop
GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }}