Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .github/workflows/.build-osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ jobs:
- name: Install dependencies
run: |
brew install bison \
openssl \
jpeg \
cppunit \
autoconf \
Expand Down Expand Up @@ -73,12 +72,11 @@ jobs:
TARBALL_NUMBERED: "${{ github.workspace }}/package/hyrax-dependencies-${{ matrix.runs-on }}-${{ github.run_number }}.tgz"
TARBALL_LATEST: "${{ github.workspace }}/package/hyrax-dependencies-${{ matrix.runs-on }}.tgz"
- name: Deploy to s3
# Will be a dryrun except for "push" triggers, which will only occur on
# main or master branch as defined by the workflow itself
# Only run when triggered by merge to main/test-deploy, as per push trigger definition above
if: (github.event_name == 'push')
run: |
aws s3 cp --recursive ${{ github.workspace }}/package s3://opendap.travis.build $aws_options
aws s3 cp --recursive ${{ github.workspace }}/package s3://opendap.github.actions.build
shell: bash
env:
access_key_id: ${{ secrets.AWS_ID }}
secret_access_key: ${{ secrets.AWS_SECRET_KEY }}
aws_options: "${{ github.event_name == 'push' && '' || '--dryrun' }}"
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_KEY }}
Loading