Skip to content

Commit

Permalink
deploy feature flags
Browse files Browse the repository at this point in the history
  • Loading branch information
bitkris-dev committed Jul 26, 2024
0 parents commit c676844
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/deploy-gh-pages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Deploy to GH pages

on:
push:
branches: [main]

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
packages: write

jobs:
BuildAndDeploy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup Pages
uses: actions/configure-pages@v2

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "./config"

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# veworld-feature-flags
3 changes: 3 additions & 0 deletions config/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"transak": false
}

0 comments on commit c676844

Please sign in to comment.