Skip to content

Latest commit

 

History

History
27 lines (14 loc) · 428 Bytes

File metadata and controls

27 lines (14 loc) · 428 Bytes

github-actions

Github actions exploration

Trying out github actions

Refer to the .github/workflows folder for all the relevant ways github actions can be used

Notes:

To change file permissions for executables, do the following:

On Linux or macOS, run:

chmod +x entrypoint.sh

git add entrypoint.sh

git commit

On Windows, run:

git add --chmod=+x -- entrypoint.sh

git commit

And then push the changes back up.