-
Notifications
You must be signed in to change notification settings - Fork 362
35 lines (29 loc) · 1.03 KB
/
workflow.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Sshwifty-CI
on:
push:
branches: [master, dev]
tags: ["**-release"]
pull_request:
jobs:
CI:
runs-on: ubuntu-latest
steps:
- name: Checking out source code
uses: actions/checkout@v3
with:
fetch-depth: 20
- name: Setting up Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Run CI
run: |
export GITHUB_USER="${{ github.repository_owner }}"
export GITHUB_USER_TOKEN="${{ secrets.GITHUB_TOKEN }}"
export DOCKER_HUB_USER="${{ secrets.DOCKER_HUB_USERNAME }}"
export DOCKER_HUB_PASSWORD="${{ secrets.DOCKER_HUB_PASSWORD }}"
export COVERALLS_TOKEN="${{ secrets.COVERALLS_TOKEN }}"
export DOCKER_CUSTOM_COMMAND='echo "GitHub Action Build"'
sudo apt-get update -y
sudo apt-get upgrade -y
cp ./.ci.sh ./.github-action-ci-script.sh && chmod +x ./.github-action-ci-script.sh && time ./.github-action-ci-script.sh && rm ./.github-action-ci-script.sh