This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| ARCH="$(arch)" | |
| case "$ARCH" in | |
| 'x86_64') | |
| export ARCH='amd64';echo $ARCH;; | |
| 'aarch64') \ | |
| export ARCH='arm64';echo $ARCH;; | |
| 'i386') \ | |
| export ARCH='i386';echo $ARCH;; | |
| esac; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - name: Get version | |
| id: time_now | |
| run: echo "::set-output name=dir::$(date +%Y_%m_%d)" | |
| - | |
| name: release | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| files: "App/**" | |
| body: "README" | |
| tag_name: ${{ steps.time_now.outputs.dir }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - uses: dev-drprasad/delete-older-releases@v0.2.0 | |
| with: | |
| repo: User/repo | |
| keep_latest: 3 | |
| delete_tag_pattern: "" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Delete old workflow runs | |
| on: | |
| schedule: | |
| - cron: '0 0 * * MON' | |
| workflow_dispatch: | |
| inputs: | |
| days: | |
| description: 'Number of days.' | |
| required: true | |
| default: "20" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build With Docker Push | |
| on: | |
| watch: | |
| types: [started] | |
| jobs: | |
| Build_With_Docker_Push: | |
| name: AWVS14 Docker Build | |
| runs-on: ubuntu-latest | |
| steps: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| Echo_c(){ | |
| echo "\033[1;33m\n$1\n\033[0m" | |
| } | |
| Rand_Name(){ | |
| openssl rand -base64 8 | md5sum | cut -c1-8 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| export GitKey="github_tocken" | |
| export GitUser="github_user" | |
| export GitApi="https://api.github.com/repos" | |
| # init | |
| printf "%s\n" "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-ce-archive-keyring.gpg] https://download.docker.com/linux/debian buster stable" | sudo tee /etc/apt/sources.list.d/docker-ce.list | |
| curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor | sudo tee /usr/share/keyrings/docker-ce-archive-keyring.gpg | |
| sudo apt update -y && sudo apt upgrade -y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| sudo apt-get -qq install util-linux zsh git wget -y | |
| sudo yum install util-linux zsh git wget -y | |
| brew install zsh git wget | |
| sudo chsh -s /bin/zsh | |
| opkg install zsh git git-http | |
| GH_DOMAIN="${GH_DOMAIN:-ghfast.top}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # =================基本配置================= | |
| NETWORK_CARD='eth2' | |
| # =================基本配置================= | |
| # 将屏幕输出的文件,同时保存在文档中 | |
| # 用到知识点:文件描述符与重定向,管道 | |
| logfile=checkSystemConfig.log | |
| fifofile=checkSystemConfig.fifo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ ca ] | |
| default_ca = CA_default | |
| [ CA_default ] | |
| default_md = sha256 | |
| [ v3_ca ] | |
| subjectKeyIdentifier=hash | |
| authorityKeyIdentifier=keyid:always,issuer | |
| basicConstraints = critical,CA:true | |
| [ req ] | |
| distinguished_name = req_distinguished_name |
OlderNewer