Skip to content

Commit

Permalink
[FSSDK-8958] chore: prepare 3.0.1 branch for release (#372)
Browse files Browse the repository at this point in the history
* Fix: Passing docker variables and fixed tag format check.  (#363)

removing travis and fixing git actions.

* change Full Stack to Feature Experimentation (#368) (#369)

Co-authored-by: Griffin Cox <[email protected]>

* [FSSDK-8958] fix: change build status to actions (#370)

* Update README.md

* change name of git action

* prep for 3.0.1 release (#371)

---------

Co-authored-by: Muhammad Noman <[email protected]>
Co-authored-by: Griffin Cox <[email protected]>
  • Loading branch information
3 people authored Mar 13, 2023
1 parent 65da1e5 commit 648d1ee
Show file tree
Hide file tree
Showing 32 changed files with 591 additions and 783 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/agent.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
name: Agent CI
name: build

on:
push:
branches: [ master ]
tags:
# Making sure this doesn't trigger when tags are pushed
- 'v[0-9]+.[0-9]+.[0-9]+.[0-9]+.[0-9]+.[0-9]'
- 'v*.*.*'
pull_request:
branches: [ master ]

Expand Down Expand Up @@ -184,13 +183,18 @@ jobs:
echo "$HOME/bin:$HOME/travisci-tools/release_github" >> $GITHUB_PATH
- name: run script
env:
HOME: 'home/runner'
GITHUB_TOKEN: ${{ secrets.CI_USER_TOKEN }}
TRAVIS_OS_NAME: 'linux'
DOCKERHUB_PASS: ${{ secrets.DOCKERHUB_PASS }}
DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USER }}
run: |
make -e setup build
# now we're going to create packages & upload packages
./scripts/ci_create_packages.sh && ./scripts/ci_upload_packages.sh
# create the github release (draft)
release_github_v2.sh "$APP_VERSION"
cp $HOME/travisci-tools/release_github/release_github_v2.sh .
./release_github_v2.sh "$APP_VERSION"
# attach generate_secret to the github release
./scripts/ci_build_generate_secret.sh && ./scripts/ci_attach_generate_secret.sh
Expand Down Expand Up @@ -230,6 +234,7 @@ jobs:
- name: set the env
run: echo "APP_VERSION=${{ steps.get_version.outputs.VERSION }}" >> $GITHUB_ENV
- name: Upload and publish draft
shell: bash
env:
HOME: 'home/runner'
run: |
Expand All @@ -239,7 +244,10 @@ jobs:
- name: run script
env:
TRAVIS_OS_NAME: ${{ matrix.os_name }}
DOCKERHUB_PASS: ${{ secrets.DOCKERHUB_PASS }}
DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USER }}
id: script
shell: bash
run: |
hub release download $(git describe --abbrev=0 --tags) -i '*-${{ matrix.TARGET }}-*'
tar xvfz generate_secret-${{ matrix.TARGET }}-${APP_VERSION}.tar.gz -C /tmp
Expand Down
323 changes: 0 additions & 323 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 648d1ee

Please sign in to comment.