Skip to content

Commit 013155a

Browse files
Added GH action
1 parent b70899b commit 013155a

File tree

2 files changed

+53
-10
lines changed

2 files changed

+53
-10
lines changed

.github/static.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Simple workflow for deploying static content to GitHub Pages
2+
name: Deploy static content to Pages
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: false
23+
24+
jobs:
25+
# Single deploy job since we're just deploying
26+
deploy:
27+
environment:
28+
name: github-pages
29+
url: ${{ steps.deployment.outputs.page_url }}
30+
runs-on: ubuntu-latest
31+
steps:
32+
- name: Checkout
33+
uses: actions/checkout@v3
34+
- name: Setup Pages
35+
uses: actions/configure-pages@v3
36+
- name: Upload artifact
37+
uses: actions/upload-pages-artifact@v2
38+
with:
39+
# Upload entire repository
40+
path: './_site'
41+
- name: Deploy to GitHub Pages
42+
id: deployment
43+
uses: actions/deploy-pages@v2

eula.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,25 @@ END USER LICENSE AGREEMENT FOR FANTAS
55
66
This End User License Agreement ("Agreement") is a legal agreement between you and Codefoco ("Company") and applies to the use of the Fantas software ("Software"). By purchasing and using the Software, you agree to be bound by the terms of this Agreement. If you do not agree to the terms of this Agreement, do not use the Software.
77
8-
License Grant. Company grants you a limited, non-exclusive, non-transferable license to use the Software solely for your personal or internal business purposes, provided that you have paid the applicable license fee. You may not use the Software for any other purpose, including but not limited to resale, distribution, sublicensing, or service bureau use.
8+
License Grant. Company grants you a limited, non-exclusive, non-transferable license to use the Software solely for your personal or internal business purposes, provided that you have paid the applicable license fee. You may not use the Software for any other purpose, including but not limited to resale, distribution, sublicensing, or service bureau use.
99
10-
Intellectual Property. The Software and all intellectual property rights therein, including but not limited to copyrights, trademarks, and trade secrets, are the property of Company and its licensors. You acknowledge and agree that the Software and all related documentation are proprietary products of Company and its licensors, protected under copyright and other intellectual property laws.
10+
Intellectual Property. The Software and all intellectual property rights therein, including but not limited to copyrights, trademarks, and trade secrets, are the property of Company and its licensors. You acknowledge and agree that the Software and all related documentation are proprietary products of Company and its licensors, protected under copyright and other intellectual property laws.
1111
12-
Restrictions on Use. You may not modify, reverse engineer, decompile, or disassemble the Software in any way. You may not create any derivative works based on the Software. You may not use the Software in any manner that infringes the intellectual property rights of Company or its licensors. You may not distribute or transfer the Software to any third party.
12+
Restrictions on Use. You may not modify, reverse engineer, decompile, or disassemble the Software in any way. You may not create any derivative works based on the Software. You may not use the Software in any manner that infringes the intellectual property rights of Company or its licensors. You may not distribute or transfer the Software to any third party.
1313
14-
Termination. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of the Software in your possession. This Agreement will also terminate automatically if you fail to comply with any term or condition of this Agreement. Upon termination, you must destroy all copies of the Software in your possession.
14+
Termination. This Agreement is effective until terminated. You may terminate this Agreement at any time by destroying all copies of the Software in your possession. This Agreement will also terminate automatically if you fail to comply with any term or condition of this Agreement. Upon termination, you must destroy all copies of the Software in your possession.
1515
16-
Disclaimer of Warranty. THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. COMPANY AND ITS LICENSORS DISCLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16+
Disclaimer of Warranty. THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. COMPANY AND ITS LICENSORS DISCLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
1717
18-
Limitation of Liability. IN NO EVENT SHALL COMPANY OR ITS LICENSORS BE LIABLE FOR ANY DAMAGES, INCLUDING BUT NOT LIMITED TO LOST PROFITS, LOST SAVINGS, OR OTHER INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE.
18+
Limitation of Liability. IN NO EVENT SHALL COMPANY OR ITS LICENSORS BE LIABLE FOR ANY DAMAGES, INCLUDING BUT NOT LIMITED TO LOST PROFITS, LOST SAVINGS, OR OTHER INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE.
1919
20-
Governing Law. This Agreement shall be governed by and construed in accordance with the laws of the [State/Country] without giving effect to any principles of conflicts of law.
20+
Governing Law. This Agreement shall be governed by and construed in accordance with the laws of the [State/Country] without giving effect to any principles of conflicts of law.
2121
22-
Entire Agreement. This Agreement constitutes the entire agreement between you and Company and supersedes any prior agreements or understandings, whether oral or written. This Agreement may not be amended or modified except in writing signed by both parties.
22+
Entire Agreement. This Agreement constitutes the entire agreement between you and Company and supersedes any prior agreements or understandings, whether oral or written. This Agreement may not be amended or modified except in writing signed by both parties.
2323
24-
Severability. If any provision of this Agreement is found to be invalid or unenforceable, that provision shall be enforced to the maximum extent possible, and the remaining provisions shall remain in full force and effect.
24+
Severability. If any provision of this Agreement is found to be invalid or unenforceable, that provision shall be enforced to the maximum extent possible, and the remaining provisions shall remain in full force and effect.
2525
26-
Waiver. The failure of either party to exercise any right provided for herein shall not be deemed a waiver of any further rights hereunder.
26+
Waiver. The failure of either party to exercise any right provided for herein shall not be deemed a waiver of any further rights hereunder.
2727
2828
By using the Software, you acknowledge that you have read this Agreement, understand it, and agree to be bound by its terms and conditions.
2929

0 commit comments

Comments
 (0)