change back buttons in create pages to cancel with confirmation popup… #128
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
name: Example | |
on: | |
push: | |
branches: [main] # add with comma for more branches to monitor | |
pull_request: | |
branches: [main] | |
env: | |
DATABASE_URL: ${{secrets.DATABASE_URL}} | |
COOKIESTORE: ${{secrets.COOKIESTORE}} | |
# FIREBASE_ADMIN_PASSPHRASE: ${{secrets.FIREBASE_ADMIN_PASSPHRASE}} | |
jobs: | |
example: | |
name: Create Ubuntu OS | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Go | |
uses: actions/[email protected] | |
with: | |
go-version: 1.22.3 | |
- name: Check Go Version | |
run: go version | |
- name: Checkout Repo # to pull out current repo code | |
uses: actions/[email protected] | |
- name: Install dependencies | |
run: | | |
#go mod init calc # for go mod. If we use go build, it will do the same for the 3 lines. | |
go mod tidy | |
go get github.com/franela/goblin | |
go get golang.org/x/tools/cmd/godoc@latest | |
ls | |
- name: Decrypt Firebase JSON | |
run: | | |
chmod +x decrypt_secret.sh | |
./decrypt_secret.sh | |
env: | |
FIREBASE_ADMIN_PASSPHRASE: ${{secrets.FIREBASE_ADMIN_PASSPHRASE}} | |
- name: Go Test | |
run: | | |
go test | |
- if: ${{success()}} | |
name: Success Message (Discord) | |
uses: discord-actions/message@v2 | |
with: | |
webhookUrl: ${{secrets.DISCORD_WEBHOOK}} | |
message: SUCCESSFULLLL in branch ${{github.ref}} by ${{github.actor}} | |
- if: ${{success()}} | |
name: Success Message (Telegram) | |
uses: akeylimepie/[email protected] | |
with: | |
token: ${{secrets.TELEGRAM_TOKEN}} | |
chat_id: ${{secrets.TELEGRAM_CHAT_ID}} | |
text: SUCCESSFULLLL in branch ${{github.ref}} by ${{github.actor}} | |
- if: ${{failure()}} | |
name: Failure Message (Discord) | |
uses: discord-actions/message@v2 | |
with: | |
webhookUrl: ${{secrets.DISCORD_WEBHOOK}} | |
message: FAILUREEEE in branch ${{github.ref}} by ${{github.actor}} | |
- if: ${{failure()}} | |
name: Failure Message (Telegram) | |
uses: akeylimepie/[email protected] | |
with: | |
token: ${{secrets.TELEGRAM_TOKEN}} | |
chat_id: ${{secrets.TELEGRAM_CHAT_ID}} | |
text: FAILUREEEE in branch ${{github.ref}} by ${{github.actor}} | |
#- name: Setup Python | |
#uses: actions/[email protected] | |
#with: | |
#python-version: 3.8 | |
#- name: Show Python Version | |
#run: | | |
#ls | |
#python --version | |
#ls | |
#pip3 install pandas | |