-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c427936
commit 117b96f
Showing
63 changed files
with
1,014 additions
and
1,629 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Launch Web | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
paths: | ||
- 'snow_portfolio/**' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: subosito/flutter-action@v2 | ||
with: | ||
flutter-version: "3.16.8" | ||
channel: "stable" | ||
- run: flutter pub get | ||
working-directory: snow_portfolio | ||
- run: flutter build web --web-renderer canvaskit --release | ||
working-directory: snow_portfolio | ||
- run: mkdir docs | ||
- run: cp -r snow_portfolio/build/web/* docs # Comando para copiar el contenido de build/web a docs | ||
- run: cp snow_portfolio/assets/google51501707e62fe96b.html docs/google51501707e62fe96b.html | ||
- run: flutter clean | ||
working-directory: snow_portfolio | ||
- run: git add . | ||
- run: git config user.name AlexitoSnow # Comando para configurar el nombre de usuario de git | ||
- run: git config user.email [email protected] # Comando para configurar el email de usuario de git | ||
- run: git commit -m "Deploy web to GitHub Pages" # Comando para hacer un commit con un mensaje | ||
- run: git push origin main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
google-site-verification: google51501707e62fe96b.html |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
extensions: |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
{ | ||
"about": "About", | ||
"skills": "Skills", | ||
"projects": "Projects", | ||
"extracurricular": "Extracurricular", | ||
"volunteering": "Volunteering" | ||
"technologies": "Technologies", | ||
"projects": "Projects" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"languages": "Languages", | ||
"frameworks": "Frameworks", | ||
"databases": "Data Bases", | ||
"tools": "Tools" | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
{ | ||
"about": "Sobre mí", | ||
"skills": "Habilidades", | ||
"projects": "Proyectos", | ||
"extracurricular": "Extracurriculares", | ||
"volunteering": "Voluntariado" | ||
"technologies": "Tecnologías", | ||
"projects": "Proyectos" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"languages": "Lenguajes", | ||
"frameworks": "Marcos de Trabajo", | ||
"databases": "Bases de Datos", | ||
"tools": "Herramientas" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
// ignore_for_file: constant_identifier_names | ||
|
||
part of 'app_pages.dart'; | ||
// DO NOT EDIT. This is code generated via package:get_cli/get_cli.dart | ||
|
||
abstract class Routes { | ||
Routes._(); | ||
static const HOME = _Paths.HOME; | ||
} | ||
|
||
abstract class _Paths { | ||
_Paths._(); | ||
static const HOME = '/'; | ||
static const HOME = '/alexander-nieves/'; | ||
static const ABOUT = '${HOME}about'; | ||
static const TECHNOLOGIES = '${HOME}technologies'; | ||
static const PROJECTS = '${HOME}projects'; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.