Skip to content

Commit

Permalink
Update buildRelease.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nanihadesuka authored Mar 12, 2023
1 parent 1e18f87 commit 1463432
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/buildRelease.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
name: Publish Release

on:
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs: # A workflow run is made up of one or more jobs that can run sequentially or in parallel
buildRelease: # Job
jobs:
buildRelease:
name: Build Release
runs-on: ubuntu-latest # The type of runner that the job will run on
steps: # Steps represent a sequence of tasks that will be executed as part of the job

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
runs-on: ubuntu-20.04
steps:
- name: Clone repo
uses: actions/checkout@v2

- name: Setup Python enviroment
uses: actions/setup-python@v2
with:
python-version: 3.8.5
python-version: 3.11

- name: Install python dependencies
run: |
Expand Down

0 comments on commit 1463432

Please sign in to comment.