diff --git a/.github/workflows/dictionary_push.yaml b/.github/workflows/dictionary_push.yaml new file mode 100644 index 0000000..065d7ea --- /dev/null +++ b/.github/workflows/dictionary_push.yaml @@ -0,0 +1,13 @@ +name: Build ndhdictionary dictionary + +on: push + +jobs: + dictionary: + name: Build and Deploy Dictionary + uses: uc-cdis/.github/.github/workflows/dictionary_push.yaml@master + with: + DIRECTORY: "ndhdictionary" + secrets: + AWS_ACCESS_KEY_ID: ${{ secrets.DICT_AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.DICT_AWS_SECRET_ACCESS_KEY }} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index d737b15..0000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -language: python -python: -- '3.6' -before_script: -- yes | python setup.py install -- git clone https://github.com/uc-cdis/dictionaryutils; cd dictionaryutils -script: -- ./run_tests.sh -deploy: - provider: s3 - access_key_id: AKIAJ2CEZVTSFRBCKRJQ - secret_access_key: - secure: og3FLG+lq3d00+sYGRRh0xfqAO4KaPR8zOR9QRQY1z5HjR8AbwAvwJMLQRC7LX6Fc+Md+lkDWgt6plZ830jO1PwVQovaEKtW2c1gzlSqw+xqA2ZEvkDgyMf2Lsi6C6RJHBVmqc0BH3NYjT2Q2cPzWvCrKbnkinLHmGIhKDhqnd/9HH+gbpCTL4tjzoy3UxZYvGGuI1EsRMddJa8vKowa3fh9dt6V7xTM6gx5bAfqWaZ655DqiAMwaI2SaLxkW2OCRM0sxNXQjmDX8t2NaK9srzH4fGWn2aZWIp6MsGb7r0VpxUA4gMGYpSE4oBShs5+3sSPffte/sf4a2BfzY+n0XGE5kRbqCDYF/w7q9ffyEtUW6trCFD2lCkdnWXVslC04uNYQxeUv4jT2iRDqVntoWlC5fuiYIVJ0s+Wv4nMJB5shuKCG5zeWrpw+D39TvaOwJ2YN/cNJ/aBQFQBMyrYu2xkdG3kE2aAJa2SOMKXVzVjPRpxERSWtZxpMTwVDCJsXuYysvVrBAeTpJJ6kY7dauBMvCX+EbA8HaOayRRP42H3Ldvtnf277lhYOMPCh8+81FovEMFvgFjR/dtcgE/qdTAlDvwt2JZ3iCwLHNBros7P5xL0ZXLpU5b/0HB6hdyON4w+splKcqhnHzRcihfRG0eIx8kbrKj1M/radx6sYIS8= - bucket: dictionary-artifacts - local-dir: artifacts - upload-dir: ndhdictionary/$TRAVIS_BRANCH - skip_cleanup: true - on: - repo: uc-cdis/ndhdictionary - all_branches: true