This file contains hidden or 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
| action "build api-upload" { | |
| uses = "actions/docker/cli@master" | |
| args = [ | |
| "build", | |
| "-t", | |
| "api-upload", | |
| "./services/api-upload", | |
| ] | |
| } |
This file contains hidden or 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: docker build | |
| env: | |
| NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} | |
| run: docker build --build-arg NPM_TOKEN=$NPM_AUTH_TOKEN -t my-image . |
This file contains hidden or 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
| api-upload: | |
| name: api-upload | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: build api-upload | |
| run: docker build --build-arg "IMAGE_RELEASE_VERSION=$(echo | |
| ${{ github.ref }} | cut -f3 -d'/')" -t api-upload ./services/api-upload | |
| - name: tag | |
| if: contains(github.ref, 'tags') |
This file contains hidden or 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
| jobs: | |
| my-job | |
| name: my-job | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Dump GitHub context # This step is for debug purpose | |
| env: | |
| GITHUB_CONTEXT: ${{ toJson(github) }} | |
| run: echo "$GITHUB_CONTEXT" |
This file contains hidden or 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
| 1 api-upload: | |
| 2 name: api-upload | |
| 3 runs-on: ubuntu-latest | |
| 4 steps: | |
| 5 - uses: actions/checkout@master | |
| 6 - name: build api-upload | |
| 7 run: docker build --build-arg "IMAGE_RELEASE_VERSION=$(echo | |
| 8 ${{ github.ref }} | cut -f3 -d'/')" -t api-upload ./services/api-upload | |
| 9 - name: tag | |
| 11 if: contains(github.ref, 'tags') |
This file contains hidden or 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
| jobs: | |
| my-job | |
| name: my-job | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Dump GitHub context # This step is for debug purpose | |
| env: | |
| GITHUB_CONTEXT: ${{ toJson(github) }} | |
| run: echo "$GITHUB_CONTEXT" |
This file contains hidden or 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
| action "build api-upload" { | |
| uses = "actions/docker/cli@master" | |
| args = [ | |
| "build", | |
| "-t", | |
| "api-upload", | |
| "./services/api-upload", | |
| ] | |
| } |
This file contains hidden or 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
| #!/bin/bash | |
| # tsplit | |
| # @marcosnils | |
| # Based on http://linuxpixies.blogspot.jp/2011/06/tmux-copy-mode-and-how-to-control.html | |
| # a script to ssh multiple servers over multiple tmux panes | |
| starttmux() { | |
| if [ -z "$ARGS" ]; then |
This file contains hidden or 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
| FROM debian:jessie | |
| RUN apt update && apt install -y firefox-esr \ | |
| && wget https://github.com/mozilla/geckodriver/releases/download/v0.19.1/geckodriver-v0.19.1-linux64.tar.gz \ | |
| && tar -C /usr/bin/ -xvf geckodriver-v0.19.1-linux64.tar.gz && rm geckodriver-v0.19.1-linux64.tar.gz \ | |
| && wget https://download-installer.cdn.mozilla.net/pub/firefox/nightly/latest-mozilla-central/firefox-60.0a1.en-US.linux-x86_64.tar.bz2 \ | |
| && tar -C /opt/ -xvf firefox-60.0a1.en-US.linux-x86_64.tar.bz2 \ | |
| && rm /usr/bin/firefox && ln -s /opt/firefox/firefox /usr/bin/firefox |
This file contains hidden or 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
| version: '3' | |
| services: | |
| ide: | |
| image: psharkey/eclipse:latest | |
| environment: | |
| - DISPLAY=novnc:0.0 | |
| depends_on: | |
| - novnc | |
| networks: | |
| - x11 |