8000 python-demoapp/.github/act at master · dean3772/python-demoapp · GitHub
[go: up one dir, main page]

Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

readme.md

Act

Act is an amazing command line local runner for GitHub Actions
https://github.com/nektos/act

Install with

curl https://raw.githubusercontent.com/nektos/act/master/install.sh | sudo bash

To run the workflows for this repo, example commands are given below

The .secrets file must be created first, see the sample file for a reference.

Run CI

act push --secret-file .github/act/.secrets --platform ubuntu-latest=ghcr.io/benc-uk/devcontainers/python:root

Run a deployment

act workflow_dispatch --eventpath .github/act/workflow_dispatch.json --secret-file .github/act/.secrets --platform ubuntu-latest=ghcr.io/benc-uk/devcontainers/python:root
0