-
-
Notifications
You must be signed in to change notification settings - Fork 62
58 lines (51 loc) · 2 KB
/
package.yaml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Publish packages
on:
push:
branches: [ V6-master ]
paths: [ '.github/publish.txt' ]
workflow_dispatch:
jobs:
publish-windows-package:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8.10 amd64
uses: actions/setup-python@v4
with:
python-version: 3.8.10
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m venv venv
venv\Scripts\python -m pip install --upgrade pip wheel setuptools
venv\Scripts\python -m pip install -r requirements.txt
venv\Scripts\python -m pip install cos-python-sdk-v5
venv\Scripts\python -m pip install pyinstaller
- name: Build and publish package
env:
SECRETID: ${{ secrets.SECRETID }}
SECRETKEY: ${{ secrets.SECRETKEY }}
run: |
venv\Scripts\Activate.ps1
venv\Scripts\python run_build.py --type package --upload
publish-docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: amiyabot/amiyabot:2.0.2, amiyabot/amiyabot:latest