Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Rekt-Developer authored Nov 19, 2024
1 parent 7f1b6c7 commit f0d9281
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Deploy MimFlix

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Shell Environment
run: |
sudo apt-get update
sudo apt-get install -y bash
- name: Run Startup Script
run: |
chmod +x ./startup.sh
./startup.sh
- name: Commit and Push Generated Files
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "Automated: Project files created by startup.sh"
git push origin main

0 comments on commit f0d9281

Please sign in to comment.