Skip to content

Commit

Permalink
Image addition#
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruda27 committed Jan 31, 2024
1 parent eb7c757 commit 3426857
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/yourfilename.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build and Deploy

on:
push:
branches:
- main

jobs:
build-and-deploy:
runs-on: ubuntu-latest

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

- name: Build and test
run: |
# Your build and test commands here
working-directory: ./path/to/your/folder

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.DEPLOY_KEY }}
publish_dir: ./images/apple-touch-icon.png # Adjust the directory based on your build output

0 comments on commit 3426857

Please sign in to comment.