-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (52 loc) · 1.57 KB
/
deploy.yaml
File metadata and controls
64 lines (52 loc) · 1.57 KB
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
59
60
61
62
63
64
name: Deployment
on:
workflow_dispatch:
inputs:
docker-image:
description: Choice of docker image on which to run action.
default: ubuntu-latest
type: choice
options:
- ubuntu-latest
environment:
description: 'Choice of environment for pipeline'
# NOTE: this option provides dropdown list of choices of environments set on GitHub (enterprise only)
type: environment
required: true
permissions:
contents: read
env:
PYTHON_VERSION: "3.13"
# ARCHITECTURE: "x86_64-unknown-linux-gnu"
ARCHITECTURE: "x86_64-unknown-linux-musl"
jobs:
deploy:
name: DEPLOY
runs-on: ${{ github.event.inputs.docker-image }}
environment: "${{ github.event.inputs.environment }}"
env: {}
steps:
- uses: actions/checkout@v5.0.0
- name: Action - install justfile tool
uses: extractions/setup-just@v3
with:
just-version: "1.25.2"
- name: Action - install zig
uses: goto-bus-stop/setup-zig@v2.2.1
with:
version: "0.12.0"
# - name: Action - install rust
# uses: actions-rust-lang/setup-rust-toolchain@v1.14.1
- name: Action - install rust and set to stable
uses: actions-rs/toolchain@v1.0.6
with:
toolchain: stable
override: true
- name: Action - install Python
uses: actions/setup-python@v6.0.0
with:
python-version: "${{ env.PYTHON_VERSION }}"
- name: Message
shell: bash
run: |-
echo "::warning::Not yet implemented"